<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: MPI process hangs on MPI_Finalize with 2019.9.304 in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1314140#M8737</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for providing the reproducible code with all specifications and expected output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, we have checked all 4 cases you mentioned multiple times but we are unable to reproduce your issue(error).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please provide the debug information/error log for the "Bad Result Example" to understand your issue better?&lt;/P&gt;
&lt;P&gt;Use the below command for providing debug information:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt; I_MPI_DEBUG=10 mpirun -n 2 ./example.exe&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;
&lt;P&gt;Varsha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 13 Sep 2021 12:36:43 GMT</pubDate>
    <dc:creator>VarshaS_Intel</dc:creator>
    <dc:date>2021-09-13T12:36:43Z</dc:date>
    <item>
      <title>MPI process hangs on MPI_Finalize with 2019.9.304</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1313241#M8729</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have hanging problem with intel mpi 2019.9.304 like this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;System Information&lt;/H4&gt;
&lt;P&gt;uname -r&amp;nbsp; &amp;nbsp; ::&amp;nbsp; &amp;nbsp; 4.18.0-240.10.1.el8_3.x86_64&lt;/P&gt;
&lt;P&gt;ifort -v&amp;nbsp; &amp;nbsp; ::&amp;nbsp; &amp;nbsp; 19.1.3.304 or 2021.2.0&lt;/P&gt;
&lt;P&gt;mpirun -V&amp;nbsp; &amp;nbsp; ::&amp;nbsp; &amp;nbsp; 2019 Update 9 Build 20200923 or 2021.2 Build 20210302&lt;/P&gt;
&lt;P&gt;lsf&amp;nbsp; &amp;nbsp; ::&amp;nbsp; &amp;nbsp; 10.1.0.0&lt;/P&gt;
&lt;P&gt;ofed_info&amp;nbsp; &amp;nbsp; ::&amp;nbsp; MLNX_OFED_LINUX-5.3-1.0.0.1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;Used Code(example.f90)&lt;/H4&gt;
&lt;PRE&gt;program example&lt;BR /&gt;&lt;BR /&gt;implicit none&lt;BR /&gt;include "mpif.h"&lt;BR /&gt;integer :: rank, size&lt;BR /&gt;real :: sum, n&lt;BR /&gt;integer :: i, j, ierr&lt;BR /&gt;&lt;BR /&gt;call MPI_Init(ierr)&lt;BR /&gt;call MPI_Comm_rank(MPI_COMM_WORLD,rank,ierr)&lt;BR /&gt;call MPI_Comm_size(MPI_COMM_WORLD,size,ierr)&lt;BR /&gt;&lt;BR /&gt;n=0.0&lt;BR /&gt;sum=0.0&lt;BR /&gt;do i=rank+1,100000,size&lt;BR /&gt;  !$omp parallel do private(j) reduction(+:n)&lt;BR /&gt;  do j= 1,1000000&lt;BR /&gt;    n = n + real(i) + real(j)&lt;BR /&gt;  end do&lt;BR /&gt;  !$omp end parallel do&lt;BR /&gt;end do&lt;BR /&gt;&lt;BR /&gt;print *, 'MY Rank:', rank, 'MY Part:',n&lt;BR /&gt;call MPI_Reduce(n,sum,1,MPI_REAL8,MPI_SUM,0,MPI_COMM_WORLD,ierr)&lt;BR /&gt;if(rank == 0) print *, 'PE:', rank, 'total is :', sum&lt;BR /&gt;call MPI_Finalize(ierr)&lt;BR /&gt;print *, 'End of Code: MyRank: ', rank&lt;BR /&gt;&lt;BR /&gt;end program example&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;Compile and Run Commands&lt;/H4&gt;
&lt;PRE&gt;$ mpiifort -r8 -qopenmp -o example.exe ./example.f90&lt;BR /&gt;$ bsub -J Test -n 2 -R "span[ptile=1] affinity[core(2)]" \&lt;BR /&gt;mpirun -n 2 ./example.exe&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;Simulation&lt;/H4&gt;
&lt;P&gt;I was repeated the following 4 cases 10 times.&lt;/P&gt;
&lt;P&gt;Case 1 : ifort&amp;nbsp;19.1.3.304 / intel mpi 2019.9.304&lt;/P&gt;
&lt;P&gt;Case 2 : ifort 2021.2.0 / intel mpi 2019.9.304&lt;/P&gt;
&lt;P&gt;Case 3 : ifort&amp;nbsp;19.1.3.304 / intel mpi 2021.2.0&lt;/P&gt;
&lt;P&gt;Case 4 : ifort&amp;nbsp;2021.2.0 / intel mpi 2021.2.0&lt;/P&gt;
&lt;P&gt;In Cases 3 and 4, it is performed normally. However, Cases 1 and 2 make hanging problem on MPI_Finalize(I thought based on printed line after MPI_Finalize).&lt;/P&gt;
&lt;P&gt;Cases 3 and 4 all had good results below,&lt;/P&gt;
&lt;P&gt;and C&lt;SPAN&gt;ase 1 had good results 3 out of 10&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt; and Case 2 had good results 4 out of 10.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;Good Result Example&lt;/H4&gt;
&lt;PRE&gt;MY Rank: 0 MY Part: 2.750002500000000E+016&lt;BR /&gt;MY Rank: 1 MY Part: 2.750007500000000E+016&lt;BR /&gt;PE: 0 total is : 5.500010000000000E+016&lt;BR /&gt;End of Code: MyRank: 1&lt;BR /&gt;End of Code: MyRank: 0&lt;/PRE&gt;
&lt;H4&gt;Bad Result Example(with wall-time error)&lt;/H4&gt;
&lt;PRE&gt;MY Rank: 1 MY Part: 2.750007500000000E+016&lt;BR /&gt;MY Rank: 0 MY Part: 2.750002500000000E+016&lt;BR /&gt;PE: 0 total is : 5.500010000000000E+016&lt;BR /&gt;End of Code: MyRank: 0&lt;BR /&gt;User defined signal 2&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H4&gt;Question&lt;/H4&gt;
&lt;P&gt;Could I get some solutions about this problem?&lt;/P&gt;
&lt;P&gt;And I tried somethings referring to&amp;nbsp;&lt;LI-MESSAGE title="MPI program hangs in &amp;amp;quot;MPI_Finalize&amp;amp;quot;" uid="1158477" url="https://community.intel.com/t5/Intel-oneAPI-HPC-Toolkit/MPI-program-hangs-in-quot-MPI-Finalize-quot/m-p/1158477#U1158477" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;, but some environment variables(I_MPI_HYDRA_BRANCH_COUNT, I_MPI_LSF_USE_COLLECTIVE_LAUNCH) not working.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Sep 2021 09:12:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1313241#M8729</guid>
      <dc:creator>HG_Choe</dc:creator>
      <dc:date>2021-09-09T09:12:10Z</dc:date>
    </item>
    <item>
      <title>Re: MPI process hangs on MPI_Finalize with 2019.9.304</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1314140#M8737</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for providing the reproducible code with all specifications and expected output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, we have checked all 4 cases you mentioned multiple times but we are unable to reproduce your issue(error).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please provide the debug information/error log for the "Bad Result Example" to understand your issue better?&lt;/P&gt;
&lt;P&gt;Use the below command for providing debug information:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt; I_MPI_DEBUG=10 mpirun -n 2 ./example.exe&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;
&lt;P&gt;Varsha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Sep 2021 12:36:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1314140#M8737</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2021-09-13T12:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: MPI process hangs on MPI_Finalize with 2019.9.304</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1315258#M8748</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Thanks for your reply, and sorry for the late reply.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I found something interesting while adjusting I_MPI_DEBUG option, so I've been experimenting over the past few days.&lt;/P&gt;
&lt;P&gt;As a result, &lt;STRONG&gt;there is no problem&lt;/STRONG&gt;(hanging on MPI_Finalize) with &lt;STRONG&gt;I_MPI_DEBUG &amp;gt;= 3&lt;/STRONG&gt;.&lt;/P&gt;
&lt;P&gt;What's the difference depending on I_MPI_DEBUG options except for printing debug information?&lt;/P&gt;
&lt;P&gt;I'm attaching the details(some logs) below to share information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;I_MPI_DEBUG_2.out : stdout with I_MPI_DEBUG=2,&lt;/LI&gt;
&lt;LI&gt;I_MPI_DEBUG_2.err : stderr with I_MPI_DEBUG=2, when the problem occured (about 4/10 in my system)&lt;/LI&gt;
&lt;LI&gt;I_MPI_DEBUG_3.out : stdout with I_MPI_DEBUG=3, it had empty stderr (I only concealed my node name of rank 0)&lt;/LI&gt;
&lt;LI&gt;I_MPI_DEBUG_10.out : stdout with I_MPI_DEBUG=10, it had empty stderr (I concealed my node name of of rank 0 and path in I_MPI_ROOT)&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks and Regards&lt;/P&gt;
&lt;P&gt;HG Choe&lt;/P&gt;</description>
      <pubDate>Fri, 17 Sep 2021 01:33:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1315258#M8748</guid>
      <dc:creator>HG_Choe</dc:creator>
      <dc:date>2021-09-17T01:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: MPI process hangs on MPI_Finalize with 2019.9.304</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1316739#M8767</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for providing the required information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please run your code using the below command:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;mpiexec.hydra -n 2 -ppn 2 ./example.exe&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And, also could you please let us know if you are able to get the expected outcome?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;
&lt;P&gt;Varsha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Sep 2021 13:24:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1316739#M8767</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2021-09-23T13:24:18Z</dc:date>
    </item>
    <item>
      <title>Re: MPI process hangs on MPI_Finalize with 2019.9.304</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1316910#M8769</link>
      <description>&lt;P&gt;Hi, Varsha.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you intended to use only one node by the ppn option, is that right?&lt;/P&gt;
&lt;P&gt;In conclusion, it is worked well with ppn option(modified ptile by lsf).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;bsub -J Test -n 2 -R "span[ptile=2] affinity[core(2)]" \
mpiexec.hydra -n 2 -ppn 2 ./example.exe&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But I need to run with multiple nodes.&lt;/P&gt;
&lt;P&gt;My hybrid application(mpi+openmp) is targeted n &amp;gt;= 10 and omp_num_threads = 76.&lt;/P&gt;
&lt;P&gt;(ex) Below run command makes hanging problem.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;bsub -J Test -n 10 -R "span[ptile=1] affinity[core(76)]" \
OMP_NUM_THREADS=76 mpiexec.hydra -n 10 ./example.exe&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Thanks and Regards&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;HG Choe&lt;/P&gt;</description>
      <pubDate>Fri, 24 Sep 2021 04:36:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1316910#M8769</guid>
      <dc:creator>HG_Choe</dc:creator>
      <dc:date>2021-09-24T04:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: MPI process hangs on MPI_Finalize with 2019.9.304</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1318464#M8792</link>
      <description>&lt;P&gt;Hi Choe,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for providing the information.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please try the following points mentioned below and let us know the behavior/outcome:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;--&amp;gt;[0] MPI startup(): library kind: release_mt&lt;/LI-CODE&gt;
&lt;P&gt;1. We have observed from the debug information that you are using library kind is "release_mt". Could you please let us know if you are facing the same issue with the library kind is "release".&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Could you please let us know if this issue is specific to this application or everyother applications? Could you please try running the IMB-MPI1 benchmark and let us know the output?&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;mpiexec.hydra -np 2 -ppn 1 IMB-MPI1 allreduce&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. If you are still facing the issue could you please provide debug trace of the MPI process which hangs by using the GDB Debug tool.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;4. And also, Could you please try using the interactive shell and let us know if you are able to get the expected results?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Varsha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Oct 2021 06:03:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1318464#M8792</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2021-10-01T06:03:57Z</dc:date>
    </item>
    <item>
      <title>Re:MPI process hangs on MPI_Finalize with 2019.9.304</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1320008#M8814</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We haven't heard back from you. Could you please provide an update on your issue?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 07 Oct 2021 12:08:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1320008#M8814</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2021-10-07T12:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: MPI process hangs on MPI_Finalize with 2019.9.304</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1321898#M8824</link>
      <description>&lt;P class="sub_section_element_selectors"&gt;Hi,&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;First of all, I'm sorry for the late reply again.&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Fortunately, we found some solutions in the meantime.&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;1. To update libfabric to the latest(OpenFabrics 1.13.1, &lt;A href="https://github.com/ofiwg/libfabric/releases/tag/v1.13.1" target="_blank"&gt;Release Release v1.13.1 · ofiwg/libfabric · GitHub&lt;/A&gt;)&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp; &amp;nbsp; (cf)&amp;nbsp;&lt;A href="https://software.intel.com/content/www/us/en/develop/articles/intel-mpi-library-2019-over-libfabric.html" target="_blank"&gt;Intel® MPI Library 2019 Over Libfabric*&lt;/A&gt;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;2. To add&amp;nbsp;the MPI_Barrier function before MPI_Finalize&lt;/P&gt;
&lt;LI-CODE lang="fortran"&gt;call MPI_Reduce(n,sum,1,MPI_REAL8,MPI_SUM,0,MPI_COMM_WORLD,ierr)
if(mype == 0) print *, 'PE:', mype, 'total is :', sum
call MPI_Barrier(MPI_COMM_WORLD,ierr)
call MPI_Finalize(ierr)&lt;/LI-CODE&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;So we've applied solution 1(the lastest libfabric) to our system and the hang problem is gone.&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;(We thought that solution 2(MPI_Barrier) is something like naive or clumsy.)&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;In my personal opinion, I have doubts about the compatibility between CentOS(8.3),&amp;nbsp; OFED(5.3) and libfabric(1.10.1).&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;I think we can close this issue.&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Additionally, I would appreciate it if you guys provide the information of the compatibility through a reply.&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;(if you guys have some report or known issue)&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;* Some information about previous reply.&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;1. We tried 'release', 'release_mt', 'debug' and 'debug_mt', and all have same problem.&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp; &amp;nbsp; And then all work good with the latest libfabric(1.13.1).&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;2. The case of "&lt;SPAN&gt;IMB-MPI1 allreduce" was same(It works with the latest libfabric).&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;SPAN&gt;3&amp;amp;4. I cound not do anything about GDB Debug and using the interative shell because of our politics.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(I cannot approach the compute nodes without lsf)&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Thanks for taking the time to review my issue&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;Varsha&lt;/P&gt;</description>
      <pubDate>Thu, 14 Oct 2021 06:12:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1321898#M8824</guid>
      <dc:creator>HG_Choe</dc:creator>
      <dc:date>2021-10-14T06:12:50Z</dc:date>
    </item>
    <item>
      <title>Re:MPI process hangs on MPI_Finalize with 2019.9.304</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1323728#M8857</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;(if you guys have some report or known issue)&lt;/P&gt;&lt;P&gt;Could you please refer to the below link for the Intel MPI updates, known issues, and system requirements.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/developer/articles/release-notes/mpi-library-release-notes-linux.html" target="_blank"&gt;https://www.intel.com/content/www/us/en/developer/articles/release-notes/mpi-library-release-notes-linux.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Glad to know that your issue is resolved. Thanks for sharing the solution with us. If you need any additional information, please post a new question as this thread will no longer be monitored by Intel.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Oct 2021 10:38:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-process-hangs-on-MPI-Finalize-with-2019-9-304/m-p/1323728#M8857</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2021-10-21T10:38:13Z</dc:date>
    </item>
  </channel>
</rss>

