<?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 problem with using scalapack in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/problem-with-using-scalapack/m-p/775960#M1036</link>
    <description>I want to use scalapack to solve a dense linear equation. I downloaded the example in the official website: &lt;A href="http://www.netlib.org/scalapack/scalapack_home.html"&gt;http://www.netlib.org/scalapack/scalapack_home.html&lt;/A&gt;andlinked the dynamic library. When the program run to here "CALL PDGESV(N,NRHS,A,IA,JA,DESCA,IPIV,B,IB,JB,DESCB,INFO)", it showed: &lt;BR /&gt;:Fatal error in MPI_Reduce:&lt;BR /&gt;Invalid MPI_Op, error stack:&lt;BR /&gt;MPI_Reduce(1080)............: MPI_Reduce(sbuf=0x7fff4913c160, rbuf=0x7fff4913c150, count=1, dtype=0x4c001013, MPI_MAXLOC, root=0, comm=0xc4000006) failed&lt;BR /&gt;MPIR_MAXLOC_check_dtype(217): MPI_Op MPI_MAXLOC operation not defined for this datatype&lt;BR /&gt;&lt;BR /&gt;It was my first time to use scalapakc, I don't know why this error comes, does anyone knows? Thanks a lot</description>
    <pubDate>Mon, 29 Nov 2010 02:19:50 GMT</pubDate>
    <dc:creator>fujia</dc:creator>
    <dc:date>2010-11-29T02:19:50Z</dc:date>
    <item>
      <title>problem with using scalapack</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/problem-with-using-scalapack/m-p/775960#M1036</link>
      <description>I want to use scalapack to solve a dense linear equation. I downloaded the example in the official website: &lt;A href="http://www.netlib.org/scalapack/scalapack_home.html"&gt;http://www.netlib.org/scalapack/scalapack_home.html&lt;/A&gt;andlinked the dynamic library. When the program run to here "CALL PDGESV(N,NRHS,A,IA,JA,DESCA,IPIV,B,IB,JB,DESCB,INFO)", it showed: &lt;BR /&gt;:Fatal error in MPI_Reduce:&lt;BR /&gt;Invalid MPI_Op, error stack:&lt;BR /&gt;MPI_Reduce(1080)............: MPI_Reduce(sbuf=0x7fff4913c160, rbuf=0x7fff4913c150, count=1, dtype=0x4c001013, MPI_MAXLOC, root=0, comm=0xc4000006) failed&lt;BR /&gt;MPIR_MAXLOC_check_dtype(217): MPI_Op MPI_MAXLOC operation not defined for this datatype&lt;BR /&gt;&lt;BR /&gt;It was my first time to use scalapakc, I don't know why this error comes, does anyone knows? Thanks a lot</description>
      <pubDate>Mon, 29 Nov 2010 02:19:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/problem-with-using-scalapack/m-p/775960#M1036</guid>
      <dc:creator>fujia</dc:creator>
      <dc:date>2010-11-29T02:19:50Z</dc:date>
    </item>
    <item>
      <title>problem with using scalapack</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/problem-with-using-scalapack/m-p/775961#M1037</link>
      <description>Could you please mention about your makefile? what libs are you linking with? your inlcude path etc.</description>
      <pubDate>Mon, 29 Nov 2010 05:29:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/problem-with-using-scalapack/m-p/775961#M1037</guid>
      <dc:creator>VipinKumar_E_Intel</dc:creator>
      <dc:date>2010-11-29T05:29:12Z</dc:date>
    </item>
    <item>
      <title>problem with using scalapack</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/problem-with-using-scalapack/m-p/775962#M1038</link>
      <description>I run the example program in Linux OS.&lt;BR /&gt; (1) First, Iset environment variable as:&lt;P&gt;export LD_LIBRARY_PATH=/opt/intel/mkl/&lt;CHSDATE isrocdate="False" islunardate="False" day="30" month="12" year="1899" st="on"&gt;10.0.5&lt;/CHSDATE&gt;.025/lib/em64t:$LD_LIBRARY_PATH, here, "/opt/intel/mkl/&lt;CHSDATE isrocdate="False" islunardate="False" day="30" month="12" year="1899" st="on"&gt;10.0.5&lt;/CHSDATE&gt;.025/lib/em64t" is the lib path.&lt;BR /&gt; (2) Second, I compile my program using the following:mpif90 -o main.exe example.F90 -L/opt/intel/mkl/&lt;CHSDATE isrocdate="False" islunardate="False" day="30" month="12" year="1899" st="on"&gt;10.0.5&lt;/CHSDATE&gt;.025/lib/em64t -lmkl_scalapack_lp64 -lmkl_blacs_intelmpi_lp64 -lmkl_lapack -lmkl_intel_lp64 -lmkl_intel_thread -lmkl_core -liomp5 -lpthread&lt;BR /&gt; I don't use makefile. I downloaded the mannul of"Intel Math Kernel Library for Linux OS"(march 2009 Edition) and the mannul doesn't metion how to use makefile. &lt;BR /&gt; Sometimes the compiling can success, but sometimes it shows the following information:&lt;BR /&gt;main.exe: error while loading shared libraries: libmkl_lapack.so: cannot open shared object file: No such file or directory&lt;BR /&gt; When the compiling can success, the error mentioned in the main thread comes. I am a new user of scalapack and Linux, I am completely confused by the error. Please help me, Ihave beenstumbled by it for nearly two weeks. &lt;BR /&gt; Thanks a lot.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P class="MsoNormal" style="margin: 0cm -63pt 0pt; mso-para-margin-top: 0cm; mso-para-margin-right: -6.0gd; mso-para-margin-bottom: .0001pt; mso-para-margin-left: -6.0gd;"&gt;&lt;SPAN lang="EN-US" style="font-size: 12pt;"&gt;&lt;SPAN style="font-family: Times New Roman;"&gt;mpif&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Nov 2010 09:48:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/problem-with-using-scalapack/m-p/775962#M1038</guid>
      <dc:creator>fujia</dc:creator>
      <dc:date>2010-11-29T09:48:27Z</dc:date>
    </item>
    <item>
      <title>problem with using scalapack</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/problem-with-using-scalapack/m-p/775963#M1039</link>
      <description>Sorry that this thread was not answered for a few weeks.&lt;BR /&gt;&lt;BR /&gt;Can you please try "setenv" instead of export for the LD_LIBRARY_PATH?&lt;BR /&gt;&lt;BR /&gt; --Vipin</description>
      <pubDate>Mon, 03 Jan 2011 04:13:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/problem-with-using-scalapack/m-p/775963#M1039</guid>
      <dc:creator>VipinKumar_E_Intel</dc:creator>
      <dc:date>2011-01-03T04:13:29Z</dc:date>
    </item>
  </channel>
</rss>

