<?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 MKL ScaLAPACK fails on example in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902913#M11408</link>
    <description>Folks, I'm having a bear of a time trying to figure out how to get MKL ScaLAPACK to work. I'm at such a loss I don't know if it's a bug or just a linking problem.&lt;BR /&gt;&lt;BR /&gt;To wit, in order to track down this bug in my code, I tried to find a minimal example. The problem in the code I'm trying to use seems to be with PDSYEVX, so I downloaded sample_pdsyevx_call.f from the &lt;A href="http://www.netlib.org/scalapack/examples/"&gt;ScaLAPACK examples &lt;/A&gt;site. I then preceded to compile it (all system and user names munged for security):&lt;BR /&gt;&lt;BR /&gt; &amp;gt; which mpif77&lt;BR /&gt; /opt/mpich2/ch3_ssm-intel/bin/mpif77&lt;BR /&gt; &amp;gt; mpif77 sample_pdsyevx_call.f -L/opt/intel/mkl/10.1.0.015/lib/em64t -I/opt/intel/mkl/10.1.0.015/include -lmkl_scalapack_lp64 -lmkl_blacs_intelmpi_lp64 -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread&lt;BR /&gt; &amp;gt; mpirun -np 4 ./a.out&lt;BR /&gt; forrtl: severe (174): SIGSEGV, segmentation fault occurred&lt;BR /&gt; Image              PC                Routine            Line        Source             &lt;BR /&gt; libmkl_scalapack_  00002B79F0934B0F  Unknown               Unknown  Unknown&lt;BR /&gt; rank 0 in job 10  master.MUNGED_33215   caused collective abort of all ranks&lt;BR /&gt; exit status of rank 0: return code 174 &lt;BR /&gt;&lt;BR /&gt;A failure. What I should get out is Matlab code. So, I then preceded to grab both BLACS and ScaLAPACK from netlib and compile them using Intel MKL BLAS and LAPACK. The builds went well and all tests seem to pass, so I compiled the example again:&lt;BR /&gt;&lt;BR /&gt; &amp;gt; mpif77 sample_pdsyevx_call.f -L/home/USER/lib -L/opt/intel/mkl/10.1.0.015/lib/em64t -I/opt/intel/mkl/10.1.0.015/include -lscalapack -lf77blacs -lcblacs -lblacs  -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread&lt;BR /&gt; &amp;gt; mpirun -np 4 ./a.out&lt;BR /&gt; Z(     1,     1)=     -0.485377931880384972D-01&lt;BR /&gt; Z(     2,     1)=     -0.122222718667358496D+00&lt;BR /&gt; Z(     3,     1)=     -0.282485135303397694D+00&lt;BR /&gt; Z(     4,     1)=      0.950214627337748530D+00&lt;BR /&gt; Z(     1,     2)=      0.912072227031436311D-01&lt;BR /&gt; Z(     2,     2)=      0.426620092092789616D+00&lt;BR /&gt; Z(     3,     2)=     -0.877038303257524188D+00&lt;BR /&gt; Z(     4,     2)=     -0.201197301593937478D+00&lt;BR /&gt; Z(     1,     3)=      0.495193043045525805D+00&lt;BR /&gt; Z(     2,     3)=     -0.798642041261893643D+00&lt;BR /&gt; Z(     3,     3)=     -0.298844131980118943D+00&lt;BR /&gt; Z(     4,     3)=     -0.166273644422072014D+00&lt;BR /&gt; Z(     1,     4)=     -0.862617629821305520D+00&lt;BR /&gt; Z(     2,     4)=     -0.406482218545086649D+00&lt;BR /&gt; Z(     3,     4)=     -0.248391118466086414D+00&lt;BR /&gt; Z(     4,     4)=     -0.170190725350426952D+00&lt;BR /&gt; N =           4&lt;BR /&gt; A =  hilb(N) + diag([1:-1/N:1/N])&lt;BR /&gt; W(           1 )=  0.304814036060551      ;&lt;BR /&gt; W(           2 )=  0.581961202142018      ;&lt;BR /&gt; W(           3 )=  0.908498110005126      ;&lt;BR /&gt; W(           4 )=   2.38091712798278      ;&lt;BR /&gt; backerror = A - Z * diag(W) * Z'&lt;BR /&gt; resid = A * Z - Z * diag(W)&lt;BR /&gt; ortho = Z' * Z - eye(N)&lt;BR /&gt; norm(backerror)&lt;BR /&gt; norm(resid)&lt;BR /&gt; norm(ortho)&lt;BR /&gt;&lt;BR /&gt;Note that I've also tried using the non-sequential code with iomp5, everything. Also note that even though my home-built ScaLAPACK works with this example, it still fails with my "real" code. But I figured a good first step would be to figure out why MKL ScaLAPACK seems to fail on just this example.&lt;BR /&gt;&lt;BR /&gt;Also, yes, I am using mpif77 and not mpiifort because our cluster was setup to use MPICH2, not Intel MPI. And we have many MPI codes working well on this cluster, it's just MKL ScaLAPACK that seems to fail us. (Also, my home-built ScaLAPACK was built with mpif77).&lt;BR /&gt;</description>
    <pubDate>Fri, 15 May 2009 13:34:07 GMT</pubDate>
    <dc:creator>Matt_Thompson</dc:creator>
    <dc:date>2009-05-15T13:34:07Z</dc:date>
    <item>
      <title>MKL ScaLAPACK fails on example</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902913#M11408</link>
      <description>Folks, I'm having a bear of a time trying to figure out how to get MKL ScaLAPACK to work. I'm at such a loss I don't know if it's a bug or just a linking problem.&lt;BR /&gt;&lt;BR /&gt;To wit, in order to track down this bug in my code, I tried to find a minimal example. The problem in the code I'm trying to use seems to be with PDSYEVX, so I downloaded sample_pdsyevx_call.f from the &lt;A href="http://www.netlib.org/scalapack/examples/"&gt;ScaLAPACK examples &lt;/A&gt;site. I then preceded to compile it (all system and user names munged for security):&lt;BR /&gt;&lt;BR /&gt; &amp;gt; which mpif77&lt;BR /&gt; /opt/mpich2/ch3_ssm-intel/bin/mpif77&lt;BR /&gt; &amp;gt; mpif77 sample_pdsyevx_call.f -L/opt/intel/mkl/10.1.0.015/lib/em64t -I/opt/intel/mkl/10.1.0.015/include -lmkl_scalapack_lp64 -lmkl_blacs_intelmpi_lp64 -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread&lt;BR /&gt; &amp;gt; mpirun -np 4 ./a.out&lt;BR /&gt; forrtl: severe (174): SIGSEGV, segmentation fault occurred&lt;BR /&gt; Image              PC                Routine            Line        Source             &lt;BR /&gt; libmkl_scalapack_  00002B79F0934B0F  Unknown               Unknown  Unknown&lt;BR /&gt; rank 0 in job 10  master.MUNGED_33215   caused collective abort of all ranks&lt;BR /&gt; exit status of rank 0: return code 174 &lt;BR /&gt;&lt;BR /&gt;A failure. What I should get out is Matlab code. So, I then preceded to grab both BLACS and ScaLAPACK from netlib and compile them using Intel MKL BLAS and LAPACK. The builds went well and all tests seem to pass, so I compiled the example again:&lt;BR /&gt;&lt;BR /&gt; &amp;gt; mpif77 sample_pdsyevx_call.f -L/home/USER/lib -L/opt/intel/mkl/10.1.0.015/lib/em64t -I/opt/intel/mkl/10.1.0.015/include -lscalapack -lf77blacs -lcblacs -lblacs  -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread&lt;BR /&gt; &amp;gt; mpirun -np 4 ./a.out&lt;BR /&gt; Z(     1,     1)=     -0.485377931880384972D-01&lt;BR /&gt; Z(     2,     1)=     -0.122222718667358496D+00&lt;BR /&gt; Z(     3,     1)=     -0.282485135303397694D+00&lt;BR /&gt; Z(     4,     1)=      0.950214627337748530D+00&lt;BR /&gt; Z(     1,     2)=      0.912072227031436311D-01&lt;BR /&gt; Z(     2,     2)=      0.426620092092789616D+00&lt;BR /&gt; Z(     3,     2)=     -0.877038303257524188D+00&lt;BR /&gt; Z(     4,     2)=     -0.201197301593937478D+00&lt;BR /&gt; Z(     1,     3)=      0.495193043045525805D+00&lt;BR /&gt; Z(     2,     3)=     -0.798642041261893643D+00&lt;BR /&gt; Z(     3,     3)=     -0.298844131980118943D+00&lt;BR /&gt; Z(     4,     3)=     -0.166273644422072014D+00&lt;BR /&gt; Z(     1,     4)=     -0.862617629821305520D+00&lt;BR /&gt; Z(     2,     4)=     -0.406482218545086649D+00&lt;BR /&gt; Z(     3,     4)=     -0.248391118466086414D+00&lt;BR /&gt; Z(     4,     4)=     -0.170190725350426952D+00&lt;BR /&gt; N =           4&lt;BR /&gt; A =  hilb(N) + diag([1:-1/N:1/N])&lt;BR /&gt; W(           1 )=  0.304814036060551      ;&lt;BR /&gt; W(           2 )=  0.581961202142018      ;&lt;BR /&gt; W(           3 )=  0.908498110005126      ;&lt;BR /&gt; W(           4 )=   2.38091712798278      ;&lt;BR /&gt; backerror = A - Z * diag(W) * Z'&lt;BR /&gt; resid = A * Z - Z * diag(W)&lt;BR /&gt; ortho = Z' * Z - eye(N)&lt;BR /&gt; norm(backerror)&lt;BR /&gt; norm(resid)&lt;BR /&gt; norm(ortho)&lt;BR /&gt;&lt;BR /&gt;Note that I've also tried using the non-sequential code with iomp5, everything. Also note that even though my home-built ScaLAPACK works with this example, it still fails with my "real" code. But I figured a good first step would be to figure out why MKL ScaLAPACK seems to fail on just this example.&lt;BR /&gt;&lt;BR /&gt;Also, yes, I am using mpif77 and not mpiifort because our cluster was setup to use MPICH2, not Intel MPI. And we have many MPI codes working well on this cluster, it's just MKL ScaLAPACK that seems to fail us. (Also, my home-built ScaLAPACK was built with mpif77).&lt;BR /&gt;</description>
      <pubDate>Fri, 15 May 2009 13:34:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902913#M11408</guid>
      <dc:creator>Matt_Thompson</dc:creator>
      <dc:date>2009-05-15T13:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: MKL ScaLAPACK fails on example</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902914#M11409</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
I also just saw the Link Line advisor and it suggested the following static:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; mpif77 sample_pdsyevx_call.f $MKLPATH/libmkl_scalapack_lp64.a $MKLPATH/libmkl_solver_lp64_sequential.a -Wl,--start-group $MKLPATH/libmkl_intel_lp64.a $MKLPATH/libmkl_sequential.a $MKLPATH/libmkl_core.a $MKLPATH/libmkl_blacs_intelmpi_lp64.a -Wl,--end-group -lpthread&lt;BR /&gt;&amp;gt; mpirun -np 4 ./a.out &lt;BR /&gt;forrtl: severe (174): SIGSEGV, segmentation fault occurred&lt;BR /&gt;Image PC Routine Line Source &lt;BR /&gt;a.out 0000000000414C03 Unknown Unknown Unknown&lt;BR /&gt;a.out 0000000000416A63 Unknown Unknown Unknown&lt;BR /&gt;a.out 000000000040871F Unknown Unknown Unknown&lt;BR /&gt;a.out 000000000040835C Unknown Unknown Unknown&lt;BR /&gt;libc.so.6 00000038C961D974 Unknown Unknown Unknown&lt;BR /&gt;a.out 0000000000408269 Unknown Unknown Unknown&lt;BR /&gt;rank 0 in job 8 master.MUNGED_36086 caused collective abort of all ranks&lt;BR /&gt; exit status of rank 0: return code 174 &lt;BR /&gt;&lt;BR /&gt;and dynamic:&lt;BR /&gt;&amp;gt; mpif77 sample_pdsyevx_call.f -L$MKLPATH -lmkl_scalapack_lp64 $MKLPATH/libmkl_solver_lp64_sequential.a -Wl,--start-group -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lmkl_blacs_intelmpi_lp64 -Wl,--end-group -lpthread&lt;BR /&gt;&amp;gt; mpirun -np 4 ./a.out &lt;BR /&gt;forrtl: severe (174): SIGSEGV, segmentation fault occurred&lt;BR /&gt;Image PC Routine Line Source &lt;BR /&gt;libmkl_scalapack_ 00002BAA693E6B0F Unknown Unknown Unknown&lt;BR /&gt;rank 0 in job 9 master.MUNGED_36086 caused collective abort of all ranks&lt;BR /&gt; exit status of rank 0: killed by signal 9 &lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 15 May 2009 13:41:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902914#M11409</guid>
      <dc:creator>Matt_Thompson</dc:creator>
      <dc:date>2009-05-15T13:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: MKL ScaLAPACK fails on example</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902915#M11410</link>
      <description>&lt;BR /&gt;Hmm,Interesting, &lt;BR /&gt;Can you successfully run the simplest example program ( example1.f ) from this examples?&lt;BR /&gt;What is the OS you are working for?&lt;BR /&gt;--Gennady&lt;BR /&gt;</description>
      <pubDate>Sun, 17 May 2009 16:29:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902915#M11410</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-05-17T16:29:04Z</dc:date>
    </item>
    <item>
      <title>Re: MKL ScaLAPACK fails on example</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902916#M11411</link>
      <description>&lt;DIV style="margin: 0px; height: auto;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV style="margin:0px;"&gt;Which version of MKL do you use? In PDSYEVX exampleare calls of pdlaprnt.There was problem with pdalprnt function (till MKL 10.1 U2) which was succesefully resolved in MKL 10.1 U2 and MKL 10.2 Gold.&lt;/DIV&gt;</description>
      <pubDate>Mon, 18 May 2009 05:07:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902916#M11411</guid>
      <dc:creator>Andrei_Moskalev__Int</dc:creator>
      <dc:date>2009-05-18T05:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: MKL ScaLAPACK fails on example</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902917#M11412</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;Hmm,Interesting, &lt;BR /&gt;Can you successfully run the simplest example program ( example1.f ) from this examples?&lt;BR /&gt;What is the OS you are working for?&lt;BR /&gt;--Gennady&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;The OS is:&lt;BR /&gt;&amp;gt; cat /etc/redhat-release &lt;BR /&gt;Red Hat Enterprise Linux Server release 5.3 (Tikanga)&lt;BR /&gt;&lt;BR /&gt;As for example1.f, the answer is...yes!&lt;BR /&gt;&lt;BR /&gt;&amp;gt; mpif77 example1.f -L/opt/intel/mkl/10.1.0.015/lib/em64t -I/opt/intel/mkl/10.1.0.015/include -lmkl_scalapack_lp64 -lmkl_blacs_intelmpi_lp64 -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread&lt;BR /&gt;example1.f(65): (col. 12) remark: BLOCK WAS VECTORIZED.&lt;BR /&gt;example1.f(65): (col. 12) remark: BLOCK WAS VECTORIZED.&lt;BR /&gt;example1.f(65): (col. 12) remark: BLOCK WAS VECTORIZED.&lt;BR /&gt;&lt;BR /&gt;&amp;gt; mpirun -np 6 ./a.out &lt;BR /&gt;&lt;BR /&gt;ScaLAPACK Example Program #1 -- May 1, 1997&lt;BR /&gt;&lt;BR /&gt;Solving Ax=b where A is a 9 by 9 matrix with a block size of 2&lt;BR /&gt;Running on 6 processes, where the process grid is 2 by 3&lt;BR /&gt;&lt;BR /&gt;INFO code returned by PDGESV = 0&lt;BR /&gt;&lt;BR /&gt;According to the normalized residual the solution is correct.&lt;BR /&gt;&lt;BR /&gt;||A*x - b|| / ( ||x||*||A||*eps*N ) = 0.00000000E+00&lt;BR /&gt;</description>
      <pubDate>Mon, 18 May 2009 12:35:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902917#M11412</guid>
      <dc:creator>Matt_Thompson</dc:creator>
      <dc:date>2009-05-18T12:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: MKL ScaLAPACK fails on example</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902918#M11413</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/408329"&gt;amoskale&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; &lt;BR /&gt;
&lt;DIV style="margin:0px;"&gt;Which version of MKL do you use? In PDSYEVX exampleare calls of pdlaprnt.There was problem with pdalprnt function (till MKL 10.1 U2) which was succesefully resolved in MKL 10.1 U2 and MKL 10.2 Gold.&lt;/DIV&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Well, the library is in /opt/intel/mkl/10.1.0.015, so it's not 10.2. Is there a way to figure out if this is MKL 10.1 U2? (Given the low sub-sub number in the directory, I'm doubting it.)&lt;BR /&gt;</description>
      <pubDate>Mon, 18 May 2009 12:40:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902918#M11413</guid>
      <dc:creator>Matt_Thompson</dc:creator>
      <dc:date>2009-05-18T12:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: MKL ScaLAPACK fails on example</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902919#M11414</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/61582"&gt;thematt&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;&lt;BR /&gt;Well, the library is in /opt/intel/mkl/10.1.0.015, so it's not 10.2. Is there a way to figure out if this is MKL 10.1 U2? (Given the low sub-sub number in the directory, I'm doubting it.)&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;
&lt;P&gt;1)Please see Announcement: &lt;STRONG&gt;&lt;A href="http://software.intel.com/en-us/forums/showannouncement.php?a=89"&gt;Intel MKL 10.1 Update 2 is now available&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Please pay attention on: "Users with current licenses may login at the &lt;A title="Intel registration center" href="http://registrationcenter.intel.com/" target="_blank"&gt;Intel Registration Center&lt;/A&gt; to download."&lt;/P&gt;
&lt;P&gt;2. &amp;gt;&amp;gt;&amp;gt; Is there a way to figure out if this is MKL 10.1 U2?&lt;/P&gt;
&lt;P&gt;Yes, please open &lt;MKL_ROOT&gt;docmklsupport.txt file and you can find there Package ID.&lt;BR /&gt;The Package ID ( MKL 10.1 update 2 ) is 10.1.2.024&lt;BR /&gt;--Gennady&lt;/MKL_ROOT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 May 2009 13:35:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902919#M11414</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-05-18T13:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: MKL ScaLAPACK fails on example</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902920#M11415</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/334681"&gt;Gennady Fedorov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; &lt;BR /&gt;
&lt;P&gt;1)Please see Announcement: &lt;STRONG&gt;&lt;A href="http://software.intel.com/en-us/forums/showannouncement.php?a=89"&gt;Intel MKL 10.1 Update 2 is now available&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Please pay attention on: "Users with current licenses may login at the &lt;A title="Intel registration center" href="http://registrationcenter.intel.com/" target="_blank"&gt;Intel Registration Center&lt;/A&gt; to download."&lt;/P&gt;
&lt;P&gt;2. &amp;gt;&amp;gt;&amp;gt; Is there a way to figure out if this is MKL 10.1 U2?&lt;/P&gt;
&lt;P&gt;Yes, please open &lt;MKL_ROOT&gt;docmklsupport.txt file and you can find there Package ID.&lt;BR /&gt;The Package ID ( MKL 10.1 update 2 ) is 10.1.2.024&lt;BR /&gt;--Gennady&lt;/MKL_ROOT&gt;&lt;/P&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;mklsupport.txt says (unsurprisingly): Package ID: l_mkl_p_10.1.0.015&lt;BR /&gt;&lt;BR /&gt;So, I've asked our cluster's administrator to see if he can get us 10.1 Update 2. I'll reply here after I am able to test on that update.&lt;BR /&gt;</description>
      <pubDate>Mon, 18 May 2009 13:46:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902920#M11415</guid>
      <dc:creator>Matt_Thompson</dc:creator>
      <dc:date>2009-05-18T13:46:07Z</dc:date>
    </item>
    <item>
      <title>Re: MKL ScaLAPACK fails on example</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902921#M11416</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/408329"&gt;amoskale&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; &lt;BR /&gt;
&lt;DIV style="margin:0px;"&gt;Which version of MKL do you use? In PDSYEVX exampleare calls of pdlaprnt.There was problem with pdalprnt function (till MKL 10.1 U2) which was succesefully resolved in MKL 10.1 U2 and MKL 10.2 Gold.&lt;/DIV&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Our cluster admin was able to put 10.1 Update 2 on our cluster. To wit:&lt;BR /&gt;&lt;BR /&gt;&amp;gt; mpif77 sample_pdsyevx_call.f -L/opt/intel/mkl/10.1.2.024/lib/em64t -I/opt/intel/mkl/10.1.2.024/include -lmkl_scalapack_lp64 -lmkl_blacs_intelmpi_lp64 -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread&lt;BR /&gt;&lt;BR /&gt;&amp;gt; mpirun -np 4 ./a.out &lt;BR /&gt;forrtl: severe (174): SIGSEGV, segmentation fault occurred&lt;BR /&gt;Image              PC                Routine            Line        Source             &lt;BR /&gt;libmkl_scalapack_  00002B4AD5CE4B0F  Unknown               Unknown  Unknown&lt;BR /&gt;rank 0 in job 4  master.MUNGED_51540   caused collective abort of all ranks&lt;BR /&gt; exit status of rank 0: return code 174 &lt;BR /&gt;&lt;BR /&gt;So, either this isn't the same bug, or the problem *wasn't* corrected in 10.1 Update 2.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 18 May 2009 18:45:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902921#M11416</guid>
      <dc:creator>Matt_Thompson</dc:creator>
      <dc:date>2009-05-18T18:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: MKL ScaLAPACK fails on example</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902922#M11417</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/408329"&gt;amoskale&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; &lt;BR /&gt;
&lt;DIV style="margin:0px;"&gt;Which version of MKL do you use? In PDSYEVX exampleare calls of pdlaprnt.There was problem with pdalprnt function (till MKL 10.1 U2) which was succesefully resolved in MKL 10.1 U2 and MKL 10.2 Gold.&lt;/DIV&gt;
&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;The answer seems to be that PDLAPRNT &lt;EM&gt;&lt;STRONG&gt;was not&lt;/STRONG&gt;&lt;/EM&gt; resolved in MKL 10.1 Update 2! If one comments out the two PDLAPRNT calls in the example, it at least runs to completion. It is, of course, broken in the sense that the resultant Matlab code is unusable since it needs the printed-out matrices.&lt;BR /&gt;&lt;BR /&gt;Is there anyway to get a functional MKL ScaLAPACK at the moment then, if 10.1 Update 2 doesn't contain the fix?&lt;BR /&gt;&lt;BR /&gt;ETA: Oh, and we suspect that many of the other problems we are having are due to a bad implementation of MPICH2. We are trying recompiled MPICH2 and, perhaps, use of Intel MPI to see if this fixes other bugs.&lt;BR /&gt;</description>
      <pubDate>Thu, 21 May 2009 17:38:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902922#M11417</guid>
      <dc:creator>Matt_Thompson</dc:creator>
      <dc:date>2009-05-21T17:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: MKL ScaLAPACK fails on example</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902923#M11418</link>
      <description>&lt;DIV style="margin:0px;"&gt;There is a workaround - you can compile pdlaprnt.f from netlib and put obj file in linking line before mkl libraries. It allows to use MKL ScaLAPACK functionality and avoid problems with pdlaprnt.&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Fri, 22 May 2009 05:58:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-ScaLAPACK-fails-on-example/m-p/902923#M11418</guid>
      <dc:creator>Andrei_Moskalev__Int</dc:creator>
      <dc:date>2009-05-22T05:58:57Z</dc:date>
    </item>
  </channel>
</rss>

