<?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 Hello World fails in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Hello-World-fails/m-p/1371586#M9352</link>
    <description>&lt;P&gt;Hi Kurt,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you run the cluster checker as Varsha suggested? Could you please also run the following items and &lt;SPAN&gt;share with us the detailed results including the complete log files?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;share the output of &lt;SPAN&gt;ucx_info -d&lt;/SPAN&gt; and &lt;SPAN&gt;fi_info -v&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;run the code by enabling debug options using &lt;SPAN&gt;I_MPI_DEBUG=10&lt;/SPAN&gt; and &lt;SPAN&gt;FI_LOG_LEVEL=debug&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;run the code with tcp as your &lt;SPAN&gt;OFI* provider (FI_PROVIDER=tcp ) &lt;/SPAN&gt;and enable debug options&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Xiao&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 24 Mar 2022 06:25:12 GMT</pubDate>
    <dc:creator>Xiao_Z_Intel</dc:creator>
    <dc:date>2022-03-24T06:25:12Z</dc:date>
    <item>
      <title>MPI Hello World fails</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Hello-World-fails/m-p/1367610#M9292</link>
      <description>&lt;P&gt;I'm using IntelMpi 2021.5.1 on RedHat 8.5 with an NFS file system.&amp;nbsp;&amp;nbsp; My simple Hello World program fails with many error messages.&amp;nbsp; Any help would be appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the program:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;int main(int argc, char *argv[])
{
    int rank, world_size, error_codes[1];
    char hostname[128];
    MPI_Comm intercom;
    MPI_Info info;

    MPI_Init(&amp;amp;argc, &amp;amp;argv);

    MPI_Comm_rank(MPI_COMM_WORLD, &amp;amp;rank);
    MPI_Comm_size(MPI_COMM_WORLD, &amp;amp;world_size);

    gethostname(hostname, 127);

    std::cout &amp;lt;&amp;lt; "Hello from process on " &amp;lt;&amp;lt; hostname &amp;lt;&amp;lt; std::endl;

    MPI_Finalize();
}
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I sourced /opt/intel/oneapi/setvars.sh before building the executable, and &lt;/P&gt;
&lt;P&gt;here is the run command:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;$ export I_MPI_PIN_RESPECT_CPUSET=0; mpirun ./parent_simple&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are the abridged error messages.&amp;nbsp;&amp;nbsp; I eliminated many repetitions:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[1646934040.094426] [rocci:306332:0] ib_verbs.h:84 UCX ERROR ibv_exp_query_device(mlx5_0) returned 95: Operation not supported&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[1646934040.113276] [rocci:306320:0] select.c:434 UCX ERROR no active messages transport to &amp;lt;no debug data&amp;gt;: self/memory - Destination is unreachable, rdmacm/sockaddr - no am bcopy&lt;/P&gt;
&lt;P&gt;Abort(1090703) on node 0 (rank 0 in comm 0): Fatal error in PMPI_Init: Other MPI error, error stack:&lt;BR /&gt;MPIR_Init_thread(143)........: &lt;BR /&gt;MPID_Init(1310)..............: &lt;BR /&gt;MPIDI_OFI_mpi_init_hook(1974): OFI get address vector map failed&lt;BR /&gt;[1646934040.113302] [rocci:306315:0] select.c:434 UCX ERROR no active messages transport to &amp;lt;no debug data&amp;gt;: self/memory - Destination is unreachable, rdmacm/sockaddr - no am bcopy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Mar 2022 17:47:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-Hello-World-fails/m-p/1367610#M9292</guid>
      <dc:creator>kmccall882</dc:creator>
      <dc:date>2022-03-10T17:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: MPI Hello World fails</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Hello-World-fails/m-p/1370532#M9339</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;We are unable to reproduce your issue at our end. We tried with your sample reproducer code and we were able to get the expected results.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We followed the below steps using the latest Intel MPI 2021.5 on a Linux machine:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. Please find the below command:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;For Compiling, use the below command:
mpiicc -o hello hello.cpp
For Running the MPI program, use the below command:
export I_MPI_PIN_RESPECT_CPUSET=0;mpirun -bootstrap ssh -n 1 -ppn 1 ./hello&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please provide us with the OS details and FI provider you are using?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please run the below command for cluster checker and share with us the complete log file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;clck -f ./&amp;lt;nodefile&amp;gt; -F mpi_prereq_user&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please find the attached screenshot for the expected results.&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Mar 2022 11:05:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-Hello-World-fails/m-p/1370532#M9339</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2022-03-21T11:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: MPI Hello World fails</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Hello-World-fails/m-p/1371586#M9352</link>
      <description>&lt;P&gt;Hi Kurt,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you run the cluster checker as Varsha suggested? Could you please also run the following items and &lt;SPAN&gt;share with us the detailed results including the complete log files?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;share the output of &lt;SPAN&gt;ucx_info -d&lt;/SPAN&gt; and &lt;SPAN&gt;fi_info -v&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;run the code by enabling debug options using &lt;SPAN&gt;I_MPI_DEBUG=10&lt;/SPAN&gt; and &lt;SPAN&gt;FI_LOG_LEVEL=debug&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;run the code with tcp as your &lt;SPAN&gt;OFI* provider (FI_PROVIDER=tcp ) &lt;/SPAN&gt;and enable debug options&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Xiao&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Mar 2022 06:25:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-Hello-World-fails/m-p/1371586#M9352</guid>
      <dc:creator>Xiao_Z_Intel</dc:creator>
      <dc:date>2022-03-24T06:25:12Z</dc:date>
    </item>
    <item>
      <title>Re:MPI Hello World fails</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/MPI-Hello-World-fails/m-p/1381272#M9460</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 16px; font-family: intel-clear;"&gt;Hi Kurt,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px; font-family: intel-clear;"&gt;We did not heard back from you for the additional information and will close this thread.&amp;nbsp;If you require additional assistance from Intel, please start a new thread.&amp;nbsp;Any further interaction in this thread will be considered community only.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px; font-family: intel-clear;"&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 16px; font-family: intel-clear;"&gt;Xiao&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 02 May 2022 20:27:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/MPI-Hello-World-fails/m-p/1381272#M9460</guid>
      <dc:creator>Xiao_Z_Intel</dc:creator>
      <dc:date>2022-05-02T20:27:31Z</dc:date>
    </item>
  </channel>
</rss>

