<?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 Hi, in Intel® MPI Library</title>
    <link>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138702#M5852</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I met the same issue and the libfabric is installed on my system. Have you fixed this issue?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 04 Jul 2019 12:35:05 GMT</pubDate>
    <dc:creator>Gen_X_Intel</dc:creator>
    <dc:date>2019-07-04T12:35:05Z</dc:date>
    <item>
      <title>problem with intel mpi 2019</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138700#M5850</link>
      <description>&lt;P&gt;When I compile test program with last beta version of intel mpi_2019&amp;nbsp; I receive error. Anybody have same problem?&lt;/P&gt;

&lt;P&gt;$ mpiicc -o test test.c&lt;BR /&gt;
	ld: warning: libfabric.so.1, needed by /common/intel/compilers_and_libraries_2018.1.163/linux/mpi_2019/intel64/lib/release/libmpi.so, not found (try using -rpath or -rpath-link)&lt;BR /&gt;
	/common/intel/compilers_and_libraries_2018.1.163/linux/mpi_2019/intel64/lib/release/libmpi.so: undefined reference to `fi_strerror@FABRIC_1.0'&lt;BR /&gt;
	/common/intel/compilers_and_libraries_2018.1.163/linux/mpi_2019/intel64/lib/release/libmpi.so: undefined reference to `fi_tostr@FABRIC_1.0'&lt;BR /&gt;
	/common/intel/compilers_and_libraries_2018.1.163/linux/mpi_2019/intel64/lib/release/libmpi.so: undefined reference to `fi_fabric@FABRIC_1.1'&lt;BR /&gt;
	/common/intel/compilers_and_libraries_2018.1.163/linux/mpi_2019/intel64/lib/release/libmpi.so: undefined reference to `fi_dupinfo@FABRIC_1.1'&lt;BR /&gt;
	/common/intel/compilers_and_libraries_2018.1.163/linux/mpi_2019/intel64/lib/release/libmpi.so: undefined reference to `fi_getinfo@FABRIC_1.1'&lt;BR /&gt;
	/common/intel/compilers_and_libraries_2018.1.163/linux/mpi_2019/intel64/lib/release/libmpi.so: undefined reference to `fi_freeinfo@FABRIC_1.1'&lt;/P&gt;

&lt;P&gt;$ type mpiicc&lt;BR /&gt;
	mpiicc is /common/intel/compilers_and_libraries_2018.1.163/linux/mpi_2019/intel64/bin/mpiicc&lt;/P&gt;

&lt;P&gt;$ cat test.c&lt;BR /&gt;
	/*&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; Copyright 2003-2017 Intel Corporation.&amp;nbsp; All Rights Reserved.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; The source code contained or described herein and all documents&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; related to the source code ("Material") are owned by Intel Corporation&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; or its suppliers or licensors.&amp;nbsp; Title to the Material remains with&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; Intel Corporation or its suppliers and licensors.&amp;nbsp; The Material is&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; protected by worldwide copyright and trade secret laws and treaty&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; provisions.&amp;nbsp; No part of the Material may be used, copied, reproduced,&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; modified, published, uploaded, posted, transmitted, distributed, or&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; disclosed in any way without Intel's prior express written permission.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; No license under any patent, copyright, trade secret or other&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; intellectual property right is granted to or conferred upon you by&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; disclosure or delivery of the Materials, either expressly, by&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; implication, inducement, estoppel or otherwise.&amp;nbsp; Any license under&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; such intellectual property rights must be express and approved by&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; Intel in writing.&lt;BR /&gt;
	*/&lt;BR /&gt;
	#include "mpi.h"&lt;BR /&gt;
	#include &amp;lt;stdio.h&amp;gt;&lt;BR /&gt;
	#include &amp;lt;string.h&amp;gt;&lt;/P&gt;

&lt;P&gt;int&lt;BR /&gt;
	main (int argc, char *argv[])&lt;BR /&gt;
	{&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; int i, rank, size, namelen;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; char name[MPI_MAX_PROCESSOR_NAME];&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Status stat;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Init (&amp;amp;argc, &amp;amp;argv);&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Comm_size (MPI_COMM_WORLD, &amp;amp;size);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Comm_rank (MPI_COMM_WORLD, &amp;amp;rank);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Get_processor_name (name, &amp;amp;namelen);&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (rank == 0) {&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; printf ("Hello world: rank %d of %d running on %s\n", rank, size, name);&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for (i = 1; i &amp;lt; size; i++) {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Recv (&amp;amp;rank, 1, MPI_INT, i, 1, MPI_COMM_WORLD, &amp;amp;stat);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Recv (&amp;amp;size, 1, MPI_INT, i, 1, MPI_COMM_WORLD, &amp;amp;stat);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Recv (&amp;amp;namelen, 1, MPI_INT, i, 1, MPI_COMM_WORLD, &amp;amp;stat);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Recv (name, namelen + 1, MPI_CHAR, i, 1, MPI_COMM_WORLD, &amp;amp;stat);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; printf ("Hello world: rank %d of %d running on %s\n", rank, size, name);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; } else {&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Send (&amp;amp;rank, 1, MPI_INT, 0, 1, MPI_COMM_WORLD);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Send (&amp;amp;size, 1, MPI_INT, 0, 1, MPI_COMM_WORLD);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Send (&amp;amp;namelen, 1, MPI_INT, 0, 1, MPI_COMM_WORLD);&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Send (name, namelen + 1, MPI_CHAR, 0, 1, MPI_COMM_WORLD);&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; MPI_Finalize ();&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return (0);&lt;BR /&gt;
	}&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 13 Feb 2018 18:15:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138700#M5850</guid>
      <dc:creator>Sergey_P_2</dc:creator>
      <dc:date>2018-02-13T18:15:24Z</dc:date>
    </item>
    <item>
      <title>Hi Sergey,</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138701#M5851</link>
      <description>&lt;P&gt;Hi Sergey,&lt;/P&gt;

&lt;P&gt;It looks like you don't have libfabric installed on your system.&amp;nbsp; If you do, please ensure that libfabric.so.1 is in your path.&amp;nbsp; If not, please go to &lt;A href="https://ofiwg.github.io/libfabric/"&gt;https://ofiwg.github.io/libfabric/&lt;/A&gt; to obtain the source and compile for your system.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Feb 2018 14:04:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138701#M5851</guid>
      <dc:creator>James_T_Intel</dc:creator>
      <dc:date>2018-02-14T14:04:26Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138702#M5852</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I met the same issue and the libfabric is installed on my system. Have you fixed this issue?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2019 12:35:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138702#M5852</guid>
      <dc:creator>Gen_X_Intel</dc:creator>
      <dc:date>2019-07-04T12:35:05Z</dc:date>
    </item>
    <item>
      <title>I can compile successfully</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138703#M5853</link>
      <description>&lt;P&gt;I can compile successfully with walkaround method by copying the libfabric file to the folder libmpi locates.&lt;/P&gt;&lt;P&gt;A more decent method is still necessary.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2019 14:26:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138703#M5853</guid>
      <dc:creator>Gen_X_Intel</dc:creator>
      <dc:date>2019-07-04T14:26:59Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138704#M5854</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Did you source mpivars.sh? and what 2019 update are you using?&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Best regards,&amp;nbsp;Anatoliy.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2019 07:05:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138704#M5854</guid>
      <dc:creator>Anatoliy_R_Intel</dc:creator>
      <dc:date>2019-07-05T07:05:32Z</dc:date>
    </item>
    <item>
      <title>I hava the same  problem </title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138705#M5855</link>
      <description>&lt;P&gt;I hava the same&amp;nbsp; problem&amp;nbsp; when compile vasp&amp;nbsp; how to solove this problem&lt;/P&gt;</description>
      <pubDate>Sat, 14 Dec 2019 13:44:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138705#M5855</guid>
      <dc:creator>zhou__hua</dc:creator>
      <dc:date>2019-12-14T13:44:29Z</dc:date>
    </item>
    <item>
      <title>Please test with Intel® MPI</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138706#M5856</link>
      <description>&lt;P&gt;Please test with Intel® MPI Library 2019 Update 6.&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2020 20:19:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1138706#M5856</guid>
      <dc:creator>James_T_Intel</dc:creator>
      <dc:date>2020-01-08T20:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: problem with intel mpi 2019</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1573529#M11538</link>
      <description>&lt;P&gt;Hello ,&lt;/P&gt;&lt;P&gt;Problems with oneAPI 2024 MPI with Mysql.Workbench, see error message&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;/usr/lib64/mysql-workbench/mysql-workbench-bin: /opt/intel/oneapi/mpi/2021.9.0//libfabric/lib/libfabric.so.1: version `FABRIC_1.7' not found (required by /u&lt;BR /&gt;sr/lib64/mpi/gcc/openmpi5/lib64/libmpi.so.40)&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;have you any idea for a solution that Mysql-Workbench normal works?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Franz Bernasek&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 10:28:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1573529#M11538</guid>
      <dc:creator>Bernasek__Franz</dc:creator>
      <dc:date>2024-02-19T10:28:42Z</dc:date>
    </item>
    <item>
      <title>Re: problem with intel mpi 2019</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1573544#M11539</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/113810"&gt;@Bernasek__Franz&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;there is a mismatch in your environment, the error is thrown by openmpi5&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;required by /u&lt;/SPAN&gt;&lt;SPAN&gt;sr/lib64/mpi/gcc/openmpi5/lib64/libmpi.so.40&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 12:09:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1573544#M11539</guid>
      <dc:creator>TobiasK</dc:creator>
      <dc:date>2024-02-19T12:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: problem with intel mpi 2019</title>
      <link>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1573869#M11543</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;DIV class=""&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;Thanks for the tip, it was the environment variable, a small change and everything went back to normal
Thanks&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Feb 2024 14:31:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-MPI-Library/problem-with-intel-mpi-2019/m-p/1573869#M11543</guid>
      <dc:creator>Bernasek__Franz</dc:creator>
      <dc:date>2024-02-20T14:31:58Z</dc:date>
    </item>
  </channel>
</rss>

