<?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: Re:Cannot run a simple Boost.MPI test code in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1320342#M8817</link>
    <description>&lt;P&gt;&lt;SPAN&gt;"We have done research on BoostMPI and it looks like an older library without much support or much usage."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I respectfully disagree. The Boost libraries play a central role in C++ development. You would know this if you had any idea about C++. But you obviously don't, as the following (non-)recommendation shows:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;I would not recommend Boost be centrally installed on DevCloud and officially support it(lack of resources is another reason), but if user wants to install on their own user space, they can using :&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;I&gt;pip install –user…where the –user direct pip to install it in their user directory&lt;/I&gt;"&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;You can't install Boost with &lt;EM&gt;pip&lt;/EM&gt;&amp;nbsp;, userspace or not, because &lt;EM&gt;pip&lt;/EM&gt; is a package manager for &lt;EM&gt;&lt;STRONG&gt;Python&lt;/STRONG&gt;&lt;/EM&gt;. Boost, on the other hand, &amp;nbsp;is a &lt;EM&gt;&lt;STRONG&gt;C++&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;library. &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 08 Oct 2021 12:14:52 GMT</pubDate>
    <dc:creator>geza_szarnyathy</dc:creator>
    <dc:date>2021-10-08T12:14:52Z</dc:date>
    <item>
      <title>Cannot run a simple Boost.MPI test code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1271621#M8056</link>
      <description>&lt;P&gt;Here is a very simple test program (`mpiboost.cc`) &amp;nbsp;that uses Boost.MPI:&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;#include &amp;lt;boost/mpi/environment.hpp&amp;gt;
#include &amp;lt;boost/mpi/communicator.hpp&amp;gt;
#include &amp;lt;iostream&amp;gt;
namespace bmpi = boost::mpi;

int main(int argc, char* argv[]) {
    bmpi::environment env(argc, argv);
    bmpi::communicator world;
    if (world.rank() == 0) {
        std::cout &amp;lt;&amp;lt; "MPI thread level: " &amp;lt;&amp;lt; bmpi::environment::thread_level() &amp;lt;&amp;lt; std::endl;
    }
    std::cout &amp;lt;&amp;lt; "I am process " &amp;lt;&amp;lt; world.rank() &amp;lt;&amp;lt; " of " &amp;lt;&amp;lt; world.size()
            &amp;lt;&amp;lt; "." &amp;lt;&amp;lt; std::endl;
    return 0;
}
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is how I compiled it (`/usr/lib/x86_64-linux-gnu` is where the Boost libraries live):&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;mpiicpc mpiboost.cc -L/usr/lib/x86_64-linux-gnu -lboost_mpi -lboost_serialization -o mpiboost&lt;/LI-CODE&gt;
&lt;P&gt;This is the linker warning that I got:&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;ld: warning: libmpi.so.12, needed by /glob/development-tools/versions/oneapi/2021.2/inteloneapi/mpi/2021.2.0/lib/libmpicxx.so, may conflict with libmpi.so.20
&lt;/LI-CODE&gt;
&lt;P&gt;and then I ran it:&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;mpirun -np 2 ./mpiboost&lt;/LI-CODE&gt;
&lt;P&gt;And here are the errors that I have gotten.&lt;/P&gt;
&lt;P&gt;First a probably harmless complaint about missing network interfaces:&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;[[50429,1],0]: A high-performance Open MPI point-to-point messaging module
was unable to find any relevant network interfaces:

Module: OpenFabrics (openib)
  Host: s001-n028

Another transport will be used instead, although this may result in
lower performance.

NOTE: You can disable this warning by setting the MCA parameter
btl_base_warn_component_unused to 0.&lt;/LI-CODE&gt;
&lt;P&gt;...then the incorrect output:&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;MPI thread level: single
I am process 0 of 1.
MPI thread level: single
I am process 0 of 1.
&lt;/LI-CODE&gt;
&lt;P&gt;[NOTE: The correct output should have been:&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;MPI thread level: single
I am process 0 of 2.
I am process 1 of 2.
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;]&lt;/P&gt;
&lt;P&gt;And then, finally, some error messages that I was unable to decipher:&lt;/P&gt;
&lt;LI-CODE lang="bash"&gt;[s001-n028:08428] PMIX ERROR: NO-PERMISSIONS in file src/dstore/pmix_esh.c at line 521
[s001-n028:08428] PMIX ERROR: NO-PERMISSIONS in file src/dstore/pmix_esh.c at line 530
[s001-n028:08428] PMIX ERROR: NO-PERMISSIONS in file src/dstore/pmix_esh.c at line 521
[s001-n028:08428] PMIX ERROR: NO-PERMISSIONS in file src/dstore/pmix_esh.c at line 521
[s001-n028:08428] PMIX ERROR: NO-PERMISSIONS in file src/dstore/pmix_esh.c at line 530
[s001-n028:08428] PMIX ERROR: NO-PERMISSIONS in file src/dstore/pmix_esh.c at line 1048
[s001-n028:08427] PMIX ERROR: NO-PERMISSIONS in file src/dstore/pmix_esh.c at line 521
[s001-n028:08427] PMIX ERROR: NO-PERMISSIONS in file src/dstore/pmix_esh.c at line 530
[s001-n028:08427] PMIX ERROR: NO-PERMISSIONS in file src/dstore/pmix_esh.c at line 521
[s001-n028:08427] PMIX ERROR: NO-PERMISSIONS in file src/dstore/pmix_esh.c at line 521
[s001-n028:08427] PMIX ERROR: NO-PERMISSIONS in file src/dstore/pmix_esh.c at line 530
[s001-n028:08427] PMIX ERROR: NO-PERMISSIONS in file src/dstore/pmix_esh.c at line 1048
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I suspect that the Boost libraries on DevCloud might have been compiled with an MPI version that is not quite the same as the one that comes with OneAPI. The `libmpi ` mismatch warning from the linker might be a diagnostic sign.&lt;/P&gt;
&lt;P&gt;The test program is correct, I could build and run it on our university cluster using g++ 10.2 and the corresponding `mpic++` compiler plus Boost V 1.75.0.&lt;/P&gt;
&lt;P&gt;Any help &amp;amp; suggestions on how to build and link C++ programs with Boost.MPI on the DevCloud would be much appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Apr 2021 14:43:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1271621#M8056</guid>
      <dc:creator>geza_szarnyathy</dc:creator>
      <dc:date>2021-04-07T14:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot run a simple Boost.MPI test code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1272039#M8058</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;We are able to reproduce the issue at our end. we are looking into it. We will get back to you soon with an update&lt;SPAN style="font-size: 14.6667px; font-family: Calibri, 'Segoe UI', Calibri, Thonburi, Arial, Verdana, sans-serif, 'Mongolian Baiti', 'Microsoft Yi Baiti', 'Javanese Text';"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Santosh&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Apr 2021 12:20:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1272039#M8058</guid>
      <dc:creator>SantoshY_Intel</dc:creator>
      <dc:date>2021-04-08T12:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot run a simple Boost.MPI test code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1273498#M8090</link>
      <description>&lt;P&gt;Thank you for looking into this issue. Any developments so far?&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 12:24:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1273498#M8090</guid>
      <dc:creator>geza_szarnyathy</dc:creator>
      <dc:date>2021-04-14T12:24:29Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot run a simple Boost.MPI test code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1281438#M8271</link>
      <description>&lt;P&gt;Hmm, one month later still no change. Is anyone looking at this issue?&lt;/P&gt;</description>
      <pubDate>Fri, 14 May 2021 13:46:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1281438#M8271</guid>
      <dc:creator>geza_szarnyathy</dc:creator>
      <dc:date>2021-05-14T13:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot run a simple Boost.MPI test code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1286220#M8345</link>
      <description>&lt;P&gt;Hello. I was successfully able to build and run the Boost.MPI test code on DevCloud with the following steps. Please copy the mpiboost.cc file to the cloned "boost" directory and try these steps:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;git clone --recursive&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A class="external-link" href="https://github.com/boostorg/boost.git" target="_blank" rel="nofollow noopener"&gt;https://github.com/boostorg/boost.git&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;cd boost&lt;/LI&gt;
&lt;LI&gt;./bootstrap.sh --with-toolset=gcc --with-libraries=mpi&lt;/LI&gt;
&lt;LI&gt;Added the following to the file project-config.jam:
&lt;UL&gt;
&lt;LI&gt;
&lt;PRE&gt;using mpi : mpiicc :
      &amp;lt;library-path&amp;gt;"path to intel mpi"/lib
      &amp;lt;library-path&amp;gt;"path to intel mpi"/lib/release_mt
      &amp;lt;include&amp;gt;"path to intel mpi"/include
      &amp;lt;find-shared-library&amp;gt;mpi
      &amp;lt;find-shared-library&amp;gt;dl
      &amp;lt;find-shared-library&amp;gt;rt ;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;UL&gt;
&lt;LI&gt;./b2&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;mpiicpc mpiboost.cc -I&amp;lt;&lt;STRONG&gt;boost include path&lt;/STRONG&gt;&amp;gt; -L&amp;lt;&lt;STRONG&gt;boost library path&lt;/STRONG&gt;&amp;gt; -lboost_mpi -lboost_serialization -o mpiboost&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;export LD_LIBRARY_PATH=/&amp;lt;&lt;STRONG&gt;path to /boost/stage/lib/&lt;/STRONG&gt;&amp;gt;:$LD_LIBRARY_PATH&lt;/LI&gt;
&lt;LI&gt;mpirun -genv I_MPI_DEBUG 5 -np 2 ./mpiboost&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please let me know if there are any issues or if there is anything else I can help you with.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jun 2021 17:43:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1286220#M8345</guid>
      <dc:creator>clevels</dc:creator>
      <dc:date>2021-06-01T17:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot run a simple Boost.MPI test code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1286502#M8350</link>
      <description>&lt;P&gt;Thank you for your efforts. And yes, "there is something you can help me with".&lt;/P&gt;
&lt;P&gt;Namely: &lt;EM&gt;&lt;STRONG&gt;install Boost on Devcloud centrally so that it works seamlessly with MPI and the OneAPI compilers&lt;/STRONG&gt;&lt;/EM&gt;. Your solution assumes that whoever wants to use Boost.MPI will be happy to &lt;EM&gt;clone and build a private copy of Boost&lt;/EM&gt; for him/herself. This has the following drawbacks:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;EM&gt;Technical drawback&lt;/EM&gt;: it does not scale well (what if 100 people need it?)&lt;/LI&gt;
&lt;LI&gt;&lt;EM&gt;PR drawback&lt;/EM&gt;: if you want to win the hearts of HPC developers, you must demonstrate that the OneAPI tools fit together with other, maybe more traditional, but still very often used HPC tools.&amp;nbsp;&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;Meanwhile I'll plod along on our university cluster with G++ &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers, Géza&lt;/P&gt;</description>
      <pubDate>Wed, 02 Jun 2021 12:42:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1286502#M8350</guid>
      <dc:creator>geza_szarnyathy</dc:creator>
      <dc:date>2021-06-02T12:42:33Z</dc:date>
    </item>
    <item>
      <title>Re:Cannot run a simple Boost.MPI test code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1313377#M8731</link>
      <description>&lt;P&gt;Hello. Unfortunately at this time we will not be pre-installing boost on devcloud, but this is certainly something that will be potentially discussed for future releases. Please let me know if there are any other topics you would like to discuss, otherwise I will be closing this ticket. &lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 09 Sep 2021 17:27:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1313377#M8731</guid>
      <dc:creator>clevels</dc:creator>
      <dc:date>2021-09-09T17:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: Cannot run a simple Boost.MPI test code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1313585#M8733</link>
      <description>&lt;P&gt;Dear "clevels",&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much for your message. I very much doubt that one can develop &lt;EM&gt;serious&lt;/EM&gt; HPC applications in C++ without Boost and without MPI. You can of course "...potentially discuss this for future releases..." until the cows come home, but then you may lose out in the mid-term. Which would be a pity indeed. So why not assign one person and one working day (max.) to this task and make DevCloud more useful? &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;
&lt;P&gt;Cheers, Géza&lt;/P&gt;</description>
      <pubDate>Fri, 10 Sep 2021 09:40:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1313585#M8733</guid>
      <dc:creator>geza_szarnyathy</dc:creator>
      <dc:date>2021-09-10T09:40:49Z</dc:date>
    </item>
    <item>
      <title>Re:Cannot run a simple Boost.MPI test code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1320335#M8816</link>
      <description>&lt;P&gt;I have reached out directly to a Devcloud developer with your concerns and this was the response I received:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;"We have done research on BoostMPI and it looks like an older library without much support or much usage.&lt;/P&gt;&lt;P&gt;We should not recommend or support it, people should migrate to Intel MPI as it is officially supported inside oneAPI: &lt;A href="https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/mpi-library.html#gs.2dlkqm" rel="noopener noreferrer" target="_blank"&gt;https://software.intel.com/content/www/us/en/develop/tools/oneapi/components/mpi-library.html#gs.2dlkqm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Intel implementation can reach better performance and it supports some special network fabrics.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I can imagine some developer using a project that has dependencies on BoostMPI therefore they might want to install it in DevCloud. &lt;/P&gt;&lt;P&gt;I would not recommend Boost be centrally installed on DevCloud and officially support it(lack of resources is another reason), but if user wants to install on their own user space, they can using :&lt;/P&gt;&lt;P&gt;&lt;I&gt;pip install –user…where the –user direct pip to install it in their user directory&lt;/I&gt;"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I really hope that might be useful to you. &lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 12px;"&gt;This issue has been resolved and we will no longer respond&amp;nbsp;to 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;BR /&gt;</description>
      <pubDate>Fri, 08 Oct 2021 11:48:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1320335#M8816</guid>
      <dc:creator>clevels</dc:creator>
      <dc:date>2021-10-08T11:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Cannot run a simple Boost.MPI test code</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1320342#M8817</link>
      <description>&lt;P&gt;&lt;SPAN&gt;"We have done research on BoostMPI and it looks like an older library without much support or much usage."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I respectfully disagree. The Boost libraries play a central role in C++ development. You would know this if you had any idea about C++. But you obviously don't, as the following (non-)recommendation shows:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;"&lt;/SPAN&gt;I would not recommend Boost be centrally installed on DevCloud and officially support it(lack of resources is another reason), but if user wants to install on their own user space, they can using :&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&lt;I&gt;pip install –user…where the –user direct pip to install it in their user directory&lt;/I&gt;"&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;You can't install Boost with &lt;EM&gt;pip&lt;/EM&gt;&amp;nbsp;, userspace or not, because &lt;EM&gt;pip&lt;/EM&gt; is a package manager for &lt;EM&gt;&lt;STRONG&gt;Python&lt;/STRONG&gt;&lt;/EM&gt;. Boost, on the other hand, &amp;nbsp;is a &lt;EM&gt;&lt;STRONG&gt;C++&lt;/STRONG&gt;&lt;/EM&gt;&amp;nbsp;library. &lt;LI-EMOJI id="lia_slightly-smiling-face" title=":slightly_smiling_face:"&gt;&lt;/LI-EMOJI&gt;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="sub_section_element_selectors"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Oct 2021 12:14:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/Cannot-run-a-simple-Boost-MPI-test-code/m-p/1320342#M8817</guid>
      <dc:creator>geza_szarnyathy</dc:creator>
      <dc:date>2021-10-08T12:14:52Z</dc:date>
    </item>
  </channel>
</rss>

