<?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 Simple MPI Testing Fails in Mobile and Desktop Processors</title>
    <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Simple-MPI-Testing-Fails/m-p/1274388#M50853</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So i am doing simple MPI testing on RHEL 8.3. The MPI works on first run then fails and then works if i reboot again only once. The MPI is as follows:&lt;/P&gt;
&lt;P&gt;[root@localhost test.mpi]# cat mpi_hello_world.c &lt;BR /&gt;#include &amp;lt;mpi.h&amp;gt;&lt;BR /&gt;#include &amp;lt;stdio.h&amp;gt;&lt;/P&gt;
&lt;P&gt;int main(int argc, char** argv) {&lt;BR /&gt;// Initialize the MPI environment&lt;BR /&gt;MPI_Init(NULL, NULL);&lt;/P&gt;
&lt;P&gt;// Get the number of processes&lt;BR /&gt;int world_size;&lt;BR /&gt;MPI_Comm_size(MPI_COMM_WORLD, &amp;amp;world_size);&lt;/P&gt;
&lt;P&gt;// Get the rank of the process&lt;BR /&gt;int world_rank;&lt;BR /&gt;MPI_Comm_rank(MPI_COMM_WORLD, &amp;amp;world_rank);&lt;/P&gt;
&lt;P&gt;// Get the name of the processor&lt;BR /&gt;char processor_name[MPI_MAX_PROCESSOR_NAME];&lt;BR /&gt;int name_len;&lt;BR /&gt;MPI_Get_processor_name(processor_name, &amp;amp;name_len);&lt;/P&gt;
&lt;P&gt;// Print off a hello world message&lt;BR /&gt;printf("Hello world from processor %s, rank %d out of %d processors\n",&lt;BR /&gt;processor_name, world_rank, world_size);&lt;/P&gt;
&lt;P&gt;// Finalize the MPI environment.&lt;BR /&gt;MPI_Finalize();&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;[root@localhost test.mpi]#&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get the following error:&lt;/P&gt;
&lt;P&gt;[root@localhost test.mpi]# cc mpi_hello_world.c &lt;BR /&gt;[root@localhost test.mpi]# ./a.out &lt;BR /&gt;CCE libu memcpy: WARNING: Intel cpuid detection failed&lt;BR /&gt;Using generic mem* routines instead of tuned routines&lt;BR /&gt;This message can be disabled by exporting RFE_811452_DISABLE to your environment&lt;BR /&gt;MPICH ERROR [Rank 0] [job id ] [Sat Apr 17 04:13:19 2021] [localhost.localdomain] - Abort(2161295) (rank 0 in comm 0): Fatal error in PMPI_Init: Other MPI error, error stack:&lt;BR /&gt;MPIR_Init_thread(147).......: &lt;BR /&gt;MPID_Init(495)..............: &lt;BR /&gt;MPIDI_OFI_mpi_init_hook(606): &lt;BR /&gt;open_fabric(1318)...........: &lt;BR /&gt;find_provider(1601).........: OFI fi_getinfo() failed (ofi_init.c:1601:find_provider:No data available)&lt;/P&gt;
&lt;P&gt;aborting job:&lt;BR /&gt;Fatal error in PMPI_Init: Other MPI error, error stack:&lt;BR /&gt;MPIR_Init_thread(147).......: &lt;BR /&gt;MPID_Init(495)..............: &lt;BR /&gt;MPIDI_OFI_mpi_init_hook(606): &lt;BR /&gt;open_fabric(1318)...........: &lt;BR /&gt;find_provider(1601).........: OFI fi_getinfo() failed (ofi_init.c:1601:find_provider:No data available)&lt;BR /&gt;[root@localhost test.mpi]#&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your inputs are highly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 17 Apr 2021 11:14:13 GMT</pubDate>
    <dc:creator>WasimWani</dc:creator>
    <dc:date>2021-04-17T11:14:13Z</dc:date>
    <item>
      <title>Simple MPI Testing Fails</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Simple-MPI-Testing-Fails/m-p/1274388#M50853</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So i am doing simple MPI testing on RHEL 8.3. The MPI works on first run then fails and then works if i reboot again only once. The MPI is as follows:&lt;/P&gt;
&lt;P&gt;[root@localhost test.mpi]# cat mpi_hello_world.c &lt;BR /&gt;#include &amp;lt;mpi.h&amp;gt;&lt;BR /&gt;#include &amp;lt;stdio.h&amp;gt;&lt;/P&gt;
&lt;P&gt;int main(int argc, char** argv) {&lt;BR /&gt;// Initialize the MPI environment&lt;BR /&gt;MPI_Init(NULL, NULL);&lt;/P&gt;
&lt;P&gt;// Get the number of processes&lt;BR /&gt;int world_size;&lt;BR /&gt;MPI_Comm_size(MPI_COMM_WORLD, &amp;amp;world_size);&lt;/P&gt;
&lt;P&gt;// Get the rank of the process&lt;BR /&gt;int world_rank;&lt;BR /&gt;MPI_Comm_rank(MPI_COMM_WORLD, &amp;amp;world_rank);&lt;/P&gt;
&lt;P&gt;// Get the name of the processor&lt;BR /&gt;char processor_name[MPI_MAX_PROCESSOR_NAME];&lt;BR /&gt;int name_len;&lt;BR /&gt;MPI_Get_processor_name(processor_name, &amp;amp;name_len);&lt;/P&gt;
&lt;P&gt;// Print off a hello world message&lt;BR /&gt;printf("Hello world from processor %s, rank %d out of %d processors\n",&lt;BR /&gt;processor_name, world_rank, world_size);&lt;/P&gt;
&lt;P&gt;// Finalize the MPI environment.&lt;BR /&gt;MPI_Finalize();&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;[root@localhost test.mpi]#&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I get the following error:&lt;/P&gt;
&lt;P&gt;[root@localhost test.mpi]# cc mpi_hello_world.c &lt;BR /&gt;[root@localhost test.mpi]# ./a.out &lt;BR /&gt;CCE libu memcpy: WARNING: Intel cpuid detection failed&lt;BR /&gt;Using generic mem* routines instead of tuned routines&lt;BR /&gt;This message can be disabled by exporting RFE_811452_DISABLE to your environment&lt;BR /&gt;MPICH ERROR [Rank 0] [job id ] [Sat Apr 17 04:13:19 2021] [localhost.localdomain] - Abort(2161295) (rank 0 in comm 0): Fatal error in PMPI_Init: Other MPI error, error stack:&lt;BR /&gt;MPIR_Init_thread(147).......: &lt;BR /&gt;MPID_Init(495)..............: &lt;BR /&gt;MPIDI_OFI_mpi_init_hook(606): &lt;BR /&gt;open_fabric(1318)...........: &lt;BR /&gt;find_provider(1601).........: OFI fi_getinfo() failed (ofi_init.c:1601:find_provider:No data available)&lt;/P&gt;
&lt;P&gt;aborting job:&lt;BR /&gt;Fatal error in PMPI_Init: Other MPI error, error stack:&lt;BR /&gt;MPIR_Init_thread(147).......: &lt;BR /&gt;MPID_Init(495)..............: &lt;BR /&gt;MPIDI_OFI_mpi_init_hook(606): &lt;BR /&gt;open_fabric(1318)...........: &lt;BR /&gt;find_provider(1601).........: OFI fi_getinfo() failed (ofi_init.c:1601:find_provider:No data available)&lt;BR /&gt;[root@localhost test.mpi]#&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your inputs are highly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 17 Apr 2021 11:14:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Simple-MPI-Testing-Fails/m-p/1274388#M50853</guid>
      <dc:creator>WasimWani</dc:creator>
      <dc:date>2021-04-17T11:14:13Z</dc:date>
    </item>
    <item>
      <title>Re:Simple MPI Testing Fails</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Simple-MPI-Testing-Fails/m-p/1275131#M50873</link>
      <description>&lt;P&gt;Hello WasimWani,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for posting on the Intel® communities.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;1-Can you please let us know if what you are currently referring to as MPI testing is related to the information found in the link down below? &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://software.intel.com/content/www/us/en/develop/documentation/get-started-with-mpi-for-linux/top.html" rel="noopener noreferrer" target="_blank"&gt;https://software.intel.com/content/www/us/en/develop/documentation/get-started-with-mpi-for-linux/top.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;2-Please provide the following report:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Intel® System Support Utility (Intel® SSU)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;Download link:&lt;/B&gt; &lt;A href="https://downloadcenter.intel.com/download/26735/Intel-System-Support-Utility-for-the-Linux-Operating-System" target="_blank"&gt;https://downloadcenter.intel.com/download/26735/Intel-System-Support-Utility-for-the-Linux-Operating-System&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;Instructions: &lt;/B&gt;&lt;A href="https://downloadmirror.intel.com/26735/eng/ReleaseNotes.txt" target="_blank"&gt;https://downloadmirror.intel.com/26735/eng/ReleaseNotes.txt&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I look forward to hearing from you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Victor G. &lt;/P&gt;&lt;P&gt;Intel Technical Support Technician&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 20 Apr 2021 17:36:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Simple-MPI-Testing-Fails/m-p/1275131#M50873</guid>
      <dc:creator>Victor_G_Intel</dc:creator>
      <dc:date>2021-04-20T17:36:21Z</dc:date>
    </item>
    <item>
      <title>Re:Simple MPI Testing Fails</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Simple-MPI-Testing-Fails/m-p/1276707#M50955</link>
      <description>&lt;P&gt;Hello WasimWani, &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Were you able to check the previous post?&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you need further assistance.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Victor G.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Intel Technical Support Technician&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 26 Apr 2021 18:00:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Simple-MPI-Testing-Fails/m-p/1276707#M50955</guid>
      <dc:creator>Victor_G_Intel</dc:creator>
      <dc:date>2021-04-26T18:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Simple MPI Testing Fails</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Simple-MPI-Testing-Fails/m-p/1276717#M50957</link>
      <description>Hello Victor&lt;BR /&gt;&lt;BR /&gt;I was able to resolve this. Thanks for sharing the post but i had some other problem in my case this is how it got solved.&lt;BR /&gt;&lt;BR /&gt;export MPICH_OFI_USE_PROVIDER=sockets&lt;BR /&gt;&lt;BR /&gt;Thanks for helping out Victor.&lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;Wasim</description>
      <pubDate>Mon, 26 Apr 2021 18:38:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Simple-MPI-Testing-Fails/m-p/1276717#M50957</guid>
      <dc:creator>WasimWani</dc:creator>
      <dc:date>2021-04-26T18:38:13Z</dc:date>
    </item>
    <item>
      <title>Re:Simple MPI Testing Fails</title>
      <link>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Simple-MPI-Testing-Fails/m-p/1277034#M50988</link>
      <description>&lt;P&gt;Hello WasimWani,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We are glad that you solve your issue and also appreciate that you took the time to share your fix in the forum. We will proceed to close this thread. If you need any additional information in the future, you are more than welcome to submit a new question, just remember that this thread will no longer be monitored.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Victor G. &lt;/P&gt;&lt;P&gt;Intel Technical Support Technician&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 27 Apr 2021 16:19:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Mobile-and-Desktop-Processors/Simple-MPI-Testing-Fails/m-p/1277034#M50988</guid>
      <dc:creator>Victor_G_Intel</dc:creator>
      <dc:date>2021-04-27T16:19:45Z</dc:date>
    </item>
  </channel>
</rss>

