<?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:Enable the ASYNC progress thread on HPC having infiniband. in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/Enable-the-ASYNC-progress-thread-on-HPC-having-infiniband/m-p/1372909#M9367</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Since your initial query is resolved, we are closing this thread. 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;Santosh&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 30 Mar 2022 08:50:38 GMT</pubDate>
    <dc:creator>SantoshY_Intel</dc:creator>
    <dc:date>2022-03-30T08:50:38Z</dc:date>
    <item>
      <title>Enable the ASYNC progress thread on HPC having infiniband.</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Enable-the-ASYNC-progress-thread-on-HPC-having-infiniband/m-p/1367472#M9283</link>
      <description>&lt;P&gt;Respected sir/madam,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please help me to enable the async thread for Intel MPI on HPC having interconnect as Infiniband.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Mohit Kumar&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2022 08:35:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Enable-the-ASYNC-progress-thread-on-HPC-having-infiniband/m-p/1367472#M9283</guid>
      <dc:creator>Mohit9638</dc:creator>
      <dc:date>2022-03-10T08:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: Enable the ASYNC progress thread on HPC having infiniband.</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Enable-the-ASYNC-progress-thread-on-HPC-having-infiniband/m-p/1367929#M9296</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for posting in Intel Communities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below are the steps to enable asynchronous progress control:&lt;/P&gt;
&lt;P&gt;1. To specify the configuration, source the vars.[c]sh script with the -i_mpi_library_kind environment variable.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Example&lt;/STRONG&gt;:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;source /opt/intel/oneAPI/2021.4.0.3347/setvars.sh 
source /opt/intel/oneAPI/2021.4.0.3347/mpi/2021.4.0/env/vars.sh -i_mpi_library_kind=release&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For more information, refer to the below link:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/mpi-developer-guide-linux/top/running-applications/selecting-a-library-configuration.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/develop/documentation/mpi-developer-guide-linux/top/running-applications/selecting-a-library-configuration.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;(or) You can just export the I_MPI_LIBRARY_KIND environment variable which is equivalent to step 1 mentioned above.&lt;/P&gt;
&lt;DIV class="p"&gt;
&lt;DIV&gt;
&lt;DIV&gt;Example:&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;PRE class="pre codeblock" data-platform="Linux"&gt;$ export I_MPI_LIBRARY_KIND=release&lt;/PRE&gt;
&lt;P&gt;For more information, refer to the below link:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/mpi-developer-reference-linux/top/environment-variable-reference/other-environment-variables.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/develop/documentation/mpi-developer-reference-linux/top/environment-variable-reference/other-environment-variables.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;2. Compile the MPI code using the below command:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;mpiicc sample.c&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3. Now, pass 1 to&amp;nbsp;I_MPI_ASYNC_PROGRESS environment variable to enable asynchronous progress control.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;I_MPI_ASYNC_PROGRESS=1 mpirun -n 16 ./a.out&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For more information, refer to the below link:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.intel.com/content/www/us/en/develop/documentation/mpi-developer-guide-linux/top/additional-supported-features/asynchronous-progress-control.html" target="_blank" rel="noopener"&gt;https://www.intel.com/content/www/us/en/develop/documentation/mpi-developer-guide-linux/top/additional-supported-features/asynchronous-progress-control.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried the above steps using the Intel MPI 2021.4 on a Linux machine and sharing with you the complete debug log for each step.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this resolves your issue, make sure to accept this as a solution. This would help others with similar issues. Thank you!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Santosh&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Mar 2022 08:52:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Enable-the-ASYNC-progress-thread-on-HPC-having-infiniband/m-p/1367929#M9296</guid>
      <dc:creator>SantoshY_Intel</dc:creator>
      <dc:date>2022-03-30T08:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: Enable the ASYNC progress thread on HPC having infiniband.</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Enable-the-ASYNC-progress-thread-on-HPC-having-infiniband/m-p/1367945#M9297</link>
      <description>&lt;P&gt;Hi Santosh,&lt;/P&gt;
&lt;P&gt;I have tried your approach but not getting the desired result.&lt;/P&gt;
&lt;P&gt;-The time taken by sample code with I_MPI_ASYNC_PROGRESS=0 &amp;lt;&amp;lt; time taken by sample code with I_MPI_ASYNC_PROGRESS=1&lt;/P&gt;
&lt;P&gt;- I am using HPC having infiniband with Intel Compiler 2020.2.254 version.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Mohit Kumar&lt;/P&gt;</description>
      <pubDate>Fri, 11 Mar 2022 10:56:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Enable-the-ASYNC-progress-thread-on-HPC-having-infiniband/m-p/1367945#M9297</guid>
      <dc:creator>Mohit9638</dc:creator>
      <dc:date>2022-03-11T10:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Enable the ASYNC progress thread on HPC having infiniband.</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Enable-the-ASYNC-progress-thread-on-HPC-having-infiniband/m-p/1368939#M9319</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;&lt;I&gt;&amp;gt;&amp;gt;"The time taken by sample code with I_MPI_ASYNC_PROGRESS=0 &amp;lt;&amp;lt; time taken by sample code with I_MPI_ASYNC_PROGRESS=1"&lt;/I&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;We can see that you have raised a similar issue in the Intel community forum. So, please keep track of your issue for updates using the below link:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.intel.com/t5/Intel-oneAPI-HPC-Toolkit/Intel-MPI-Compiler-2018-5-274/m-p/1365509#M9252" target="_blank" rel="noopener"&gt;https://community.intel.com/t5/Intel-oneAPI-HPC-Toolkit/Intel-MPI-Compiler-2018-5-274/m-p/1365509#M9252&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808080"&gt;&lt;I&gt;&amp;gt;&amp;gt;"I have tried your approach but not getting the desired result."&lt;/I&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Since your initial query has been resolved, can we go ahead and close this thread?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Santosh&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Mar 2022 11:59:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Enable-the-ASYNC-progress-thread-on-HPC-having-infiniband/m-p/1368939#M9319</guid>
      <dc:creator>SantoshY_Intel</dc:creator>
      <dc:date>2022-03-15T11:59:40Z</dc:date>
    </item>
    <item>
      <title>Re:Enable the ASYNC progress thread on HPC having infiniband.</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Enable-the-ASYNC-progress-thread-on-HPC-having-infiniband/m-p/1371312#M9347</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. Since your initial query has been resolved, can we go ahead and close this thread?&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;Santosh&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 23 Mar 2022 11:55:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Enable-the-ASYNC-progress-thread-on-HPC-having-infiniband/m-p/1371312#M9347</guid>
      <dc:creator>SantoshY_Intel</dc:creator>
      <dc:date>2022-03-23T11:55:45Z</dc:date>
    </item>
    <item>
      <title>Re:Enable the ASYNC progress thread on HPC having infiniband.</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Enable-the-ASYNC-progress-thread-on-HPC-having-infiniband/m-p/1372909#M9367</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Since your initial query is resolved, we are closing this thread. 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;Santosh&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 30 Mar 2022 08:50:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Enable-the-ASYNC-progress-thread-on-HPC-having-infiniband/m-p/1372909#M9367</guid>
      <dc:creator>SantoshY_Intel</dc:creator>
      <dc:date>2022-03-30T08:50:38Z</dc:date>
    </item>
  </channel>
</rss>

