<?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: running intel oneAPI MPI test.f90 example on multiple nodes in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/Re-running-intel-oneAPI-MPI-test-f90-example-on-multiple-nodes/m-p/1350802#M9095</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to us.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please try with the below mentioned commands:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;set FI_Provider=sockets

mpiexec -np 3 -ppn 1 -hosts ADAS-MS1,ADAS-MS2,ADAS-MS3 test.exe

&lt;/LI-CODE&gt;
&lt;P&gt;If still the issue persists, then please provide the debug log by using the below commands:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;set I_MPI_DEBUG=30
set FI_LOG_LEVEL=debug
mpiexec -np 3 -ppn 1 -hosts ADAS-MS1,ADAS-MS2,ADAS-MS3 test.exe

&lt;/LI-CODE&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Hemanth.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 12 Jan 2022 13:04:05 GMT</pubDate>
    <dc:creator>HemanthCH_Intel</dc:creator>
    <dc:date>2022-01-12T13:04:05Z</dc:date>
    <item>
      <title>Re: running intel oneAPI MPI test.f90 example on multiple nodes</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Re-running-intel-oneAPI-MPI-test-f90-example-on-multiple-nodes/m-p/1350040#M9091</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I had the same issue and I've been following this thread.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My current setup is:&lt;BR /&gt;- 1 Windows Server PC (ADAS-DC1)&lt;BR /&gt;- 3 Windows Pro PC (ADAS-MS1, ADAS-MS2, ADAS-MS3)&lt;BR /&gt;- Same oneAPI and MPI Library version (2021.5.0)&lt;BR /&gt;- All PC connected by LAN under the same domain&lt;BR /&gt;- All firewalls are off.&lt;BR /&gt;- All hydra_services are running.&lt;BR /&gt;- All pings to each of these pc are working.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I followed the instruction from this&lt;A href="https://www.intel.com/content/www/us/en/developer/articles/training/micro-cluster-setup-with-intel-mpi-a-stepwise-guide-to-setting-up-the-smallest-windows.html" target="_self"&gt;&amp;nbsp;link.&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I tried to run "mpiexec -validate" on all the pc and it runs successfully.&lt;BR /&gt;I don't have any problem running the mpiexec to run just by using one host only (these commands below were ran from ADAS-MS3).&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;C:\Program Files (x86)\Intel\oneAPI\mpi\2021.5.0\test&amp;gt;mpiexec -np 2 -ppn 2 -host ADAS-MS1 test.exe&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Hello world: rank 0 of 2 running on ADAS-MS1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Hello world: rank 1 of 2 running on ADAS-MS1&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT size="2"&gt;C:\Program Files (x86)\Intel\oneAPI\mpi\2021.5.0\test&amp;gt;mpiexec -np 2 -ppn 2 -host ADAS-MS2 test.exe&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Hello world: rank 0 of 2 running on ADAS-MS2&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Hello world: rank 1 of 2 running on ADAS-MS2&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT size="2"&gt;C:\Program Files (x86)\Intel\oneAPI\mpi\2021.5.0\test&amp;gt;mpiexec -np 2 -ppn 2 -host ADAS-MS3 test.exe&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Hello world: rank 0 of 2 running on ADAS-MS3&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Hello world: rank 1 of 2 running on ADAS-MS3&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But when I use more than one host, the command line stucked for a very long time with no result.&lt;BR /&gt;So I decided to use the set I_MPI_DEBUG=20 as mentioned above and here is what I got:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT size="2"&gt;C:\Program Files (x86)\Intel\oneAPI\mpi\2021.5.0\test&amp;gt;set I_MPI_DEBUG=20&lt;/FONT&gt;&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;FONT size="2"&gt;C:\Program Files (x86)\Intel\oneAPI\mpi\2021.5.0\test&amp;gt;mpiexec -np 3 -ppn 1 -hosts ADAS-MS1,ADAS-MS2,ADAS-MS3 test.exe&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;[0] MPI startup(): Intel(R) MPI Library, Version 2021.5 Build 20211102&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;[0] MPI startup(): Copyright (C) 2003-2021 Intel Corporation. All rights reserved.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;[0] MPI startup(): library kind: release&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;[0] MPI startup(): libfabric version: 1.13.2-impi&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:ofi_hmem_init():209&amp;lt;info&amp;gt; Hmem iface FI_HMEM_CUDA not supported&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:ofi_hmem_init():209&amp;lt;info&amp;gt; Hmem iface FI_HMEM_ROCR not supported&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:ofi_hmem_init():209&amp;lt;info&amp;gt; Hmem iface FI_HMEM_ZE not supported&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:netdir:core:ofi_nd_startup():602&amp;lt;info&amp;gt; ofi_nd_startup: starting initialization&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:ofi_register_provider():474&amp;lt;info&amp;gt; registering provider: netdir (113.20)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:ofi_register_provider():474&amp;lt;info&amp;gt; registering provider: ofi_rxm (113.20)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:ofi_register_provider():474&amp;lt;info&amp;gt; registering provider: sockets (113.20)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:ofi_register_provider():474&amp;lt;info&amp;gt; registering provider: tcp (113.20)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:ofi_register_provider():474&amp;lt;info&amp;gt; registering provider: ofi_hook_perf (113.20)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:ofi_register_provider():474&amp;lt;info&amp;gt; registering provider: ofi_hook_noop (113.20)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1138&amp;lt;info&amp;gt; Found provider with the highest priority tcp, must_use_util_prov = 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1138&amp;lt;info&amp;gt; Found provider with the highest priority tcp, must_use_util_prov = 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:ofi_layering_ok():1001&amp;lt;info&amp;gt; Need core provider, skipping ofi_rxm&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1161&amp;lt;info&amp;gt; Since tcp can be used, netdir has been skipped. To use netdir, please, set FI_PROVIDER=netdir&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1161&amp;lt;info&amp;gt; Since tcp can be used, sockets has been skipped. To use sockets, please, set FI_PROVIDER=sockets&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1138&amp;lt;info&amp;gt; Found provider with the highest priority tcp, must_use_util_prov = 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:ofi_layering_ok():1001&amp;lt;info&amp;gt; Need core provider, skipping ofi_rxm&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1161&amp;lt;info&amp;gt; Since tcp can be used, netdir has been skipped. To use netdir, please, set FI_PROVIDER=netdir&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1161&amp;lt;info&amp;gt; Since tcp can be used, sockets has been skipped. To use sockets, please, set FI_PROVIDER=sockets&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1138&amp;lt;info&amp;gt; Found provider with the highest priority tcp, must_use_util_prov = 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:ofi_layering_ok():1001&amp;lt;info&amp;gt; Need core provider, skipping ofi_rxm&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1161&amp;lt;info&amp;gt; Since tcp can be used, netdir has been skipped. To use netdir, please, set FI_PROVIDER=netdir&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1161&amp;lt;info&amp;gt; Since tcp can be used, sockets has been skipped. To use sockets, please, set FI_PROVIDER=sockets&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1138&amp;lt;info&amp;gt; Found provider with the highest priority tcp, must_use_util_prov = 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:ofi_layering_ok():1001&amp;lt;info&amp;gt; Need core provider, skipping ofi_rxm&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1161&amp;lt;info&amp;gt; Since tcp can be used, netdir has been skipped. To use netdir, please, set FI_PROVIDER=netdir&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1161&amp;lt;info&amp;gt; Since tcp can be used, sockets has been skipped. To use sockets, please, set FI_PROVIDER=sockets&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1161&amp;lt;info&amp;gt; Since tcp can be used, netdir has been skipped. To use netdir, please, set FI_PROVIDER=netdir&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1161&amp;lt;info&amp;gt; Since tcp can be used, sockets has been skipped. To use sockets, please, set FI_PROVIDER=sockets&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1138&amp;lt;info&amp;gt; Found provider with the highest priority tcp, must_use_util_prov = 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1123&amp;lt;warn&amp;gt; Can't find provider with the highest priority&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1138&amp;lt;info&amp;gt; Found provider with the highest priority tcp, must_use_util_prov = 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1161&amp;lt;info&amp;gt; Since tcp can be used, netdir has been skipped. To use netdir, please, set FI_PROVIDER=netdir&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1161&amp;lt;info&amp;gt; Since tcp can be used, sockets has been skipped. To use sockets, please, set FI_PROVIDER=sockets&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfabric:2668:core:core:fi_getinfo():1138&amp;lt;info&amp;gt; Found provider with the highest priority tcp, must_use_util_prov = 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;libfa[0] MPI startup(): libfabric provider: tcp;ofi_rxm&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;[0] MPI startup(): max_ch4_vcis: 1, max_reg_eps 64, enable_sep 0, enable_shared_ctxs 0, do_av_insert 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;[0] MPI startup(): addrnamelen: zu&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;[0] MPI startup(): File "C:\Program Files (x86)\Intel\oneAPI\mpi\latest\env\../etc/tuning_skx_shm-ofi_tcp-ofi-rxm.dat" not found&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;[0] MPI startup(): Load tuning file: "C:\Program Files (x86)\Intel\oneAPI\mpi\latest\env\../etc/tuning_skx_shm-ofi.dat"&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;The running program stuck at that particular step and it always behave that way every time I run the mpiexec using multiple PC for test file only.&lt;/P&gt;
&lt;P&gt;Then I tried to run using simpler program (hostname) and it works for multiple PC. Here's what I got:&lt;/P&gt;
&lt;P class="lia-indent-padding-left-30px"&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;C:\Program Files (x86)\Intel\oneAPI\mpi\2021.5.0\test&amp;gt;mpiexec -np 3 -ppn 1 -hosts ADAS-MS1,ADAS-MS2,ADAS-MS3 hostname&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;ADAS-MS1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;ADAS-MS2&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;ADAS-MS3&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;In this case, why my test.exe program cannot work in multiple nodes?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help will be much appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jan 2022 13:36:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Re-running-intel-oneAPI-MPI-test-f90-example-on-multiple-nodes/m-p/1350040#M9091</guid>
      <dc:creator>iirwan</dc:creator>
      <dc:date>2022-01-10T13:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: running intel oneAPI MPI test.f90 example on multiple nodes</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Re-running-intel-oneAPI-MPI-test-f90-example-on-multiple-nodes/m-p/1350802#M9095</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for reaching out to us.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please try with the below mentioned commands:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;set FI_Provider=sockets

mpiexec -np 3 -ppn 1 -hosts ADAS-MS1,ADAS-MS2,ADAS-MS3 test.exe

&lt;/LI-CODE&gt;
&lt;P&gt;If still the issue persists, then please provide the debug log by using the below commands:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;set I_MPI_DEBUG=30
set FI_LOG_LEVEL=debug
mpiexec -np 3 -ppn 1 -hosts ADAS-MS1,ADAS-MS2,ADAS-MS3 test.exe

&lt;/LI-CODE&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Hemanth.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jan 2022 13:04:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Re-running-intel-oneAPI-MPI-test-f90-example-on-multiple-nodes/m-p/1350802#M9095</guid>
      <dc:creator>HemanthCH_Intel</dc:creator>
      <dc:date>2022-01-12T13:04:05Z</dc:date>
    </item>
    <item>
      <title>Re:Re: running intel oneAPI MPI test.f90 example on multiple nodes</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Re-running-intel-oneAPI-MPI-test-f90-example-on-multiple-nodes/m-p/1352689#M9104</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We have not heard back from you. Could you please confirm whether your is fixed or not? If you are still facing any issues, then please provide the debug log.&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;Hemanth.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Jan 2022 13:21:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Re-running-intel-oneAPI-MPI-test-f90-example-on-multiple-nodes/m-p/1352689#M9104</guid>
      <dc:creator>HemanthCH_Intel</dc:creator>
      <dc:date>2022-01-19T13:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: running intel oneAPI MPI test.f90 example on multiple nodes</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Re-running-intel-oneAPI-MPI-test-f90-example-on-multiple-nodes/m-p/1355114#M9121</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We assume that your is resolved. If you need any additional information, please post a new question as this thread will no longer be monitored by Intel.&amp;nbsp;&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;Hemanth.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jan 2022 12:10:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Re-running-intel-oneAPI-MPI-test-f90-example-on-multiple-nodes/m-p/1355114#M9121</guid>
      <dc:creator>HemanthCH_Intel</dc:creator>
      <dc:date>2022-01-27T12:10:15Z</dc:date>
    </item>
  </channel>
</rss>

