<?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 Segmentation fault with complex ScaLAPACK in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050244#M21119</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I'm trying to understand why the following simple program is segfaulting. When I'm using double instead of std::complex&amp;lt;double&amp;gt;, everything runs smoothly.&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jun 2015 12:42:02 GMT</pubDate>
    <dc:creator>asd__asdqwe</dc:creator>
    <dc:date>2015-06-23T12:42:02Z</dc:date>
    <item>
      <title>Segmentation fault with complex ScaLAPACK</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050244#M21119</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I'm trying to understand why the following simple program is segfaulting. When I'm using double instead of std::complex&amp;lt;double&amp;gt;, everything runs smoothly.&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2015 12:42:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050244#M21119</guid>
      <dc:creator>asd__asdqwe</dc:creator>
      <dc:date>2015-06-23T12:42:02Z</dc:date>
    </item>
    <item>
      <title>are there any specific input</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050245#M21120</link>
      <description>&lt;P&gt;are there any specific input parameters? the # of mpi processes?&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2015 14:16:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050245#M21120</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2015-06-23T14:16:24Z</dc:date>
    </item>
    <item>
      <title>Could you please also share</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050246#M21121</link>
      <description>&lt;P&gt;Could you please also share your link line? (interface and compiler is the most interesting part)&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2015 14:42:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050246#M21121</guid>
      <dc:creator>Evarist_F_Intel</dc:creator>
      <dc:date>2015-06-23T14:42:12Z</dc:date>
    </item>
    <item>
      <title>As far as I understand you</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050247#M21122</link>
      <description>&lt;P&gt;As far as I understand you don't use GNU Fortran in your project (even though you built MPICH with GNU compiler and GNU Fortran bindings). Hence you do not need to link against libmkl_gf_lp64. Could you please try to use libmkl_intel_lp64 instead of gf?&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;mpicxx -cxx=icpc -lmkl_intel_thread -lmkl_core -lmkl_intel_lp64 -liomp5 -lpthread -lmpifort -lmkl_blacs_intelmpi_lp64 -lmkl_scalapack_lp64 scalapack_z.cpp -std=c++11&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jun 2015 17:05:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050247#M21122</guid>
      <dc:creator>Evarist_F_Intel</dc:creator>
      <dc:date>2015-06-23T17:05:14Z</dc:date>
    </item>
    <item>
      <title>I am sorry for late respond.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050248#M21123</link>
      <description>&lt;P&gt;I am sorry for late respond. Yes I reproduced the crash.&lt;/P&gt;

&lt;P&gt;The problem is in incorrect number of input parameters for the function pzgeqpf (actually it requires 13 parameters, while you pass only 11). Please take a look at the function declaration either in mkl/include/mkl_scalapack.h, or in MKL documentation or in Netlib documentation (http://www.netlib.org/scalapack/explore-html/de/dbc/pzgeqpf_8f_source.html).&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jun 2015 13:28:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050248#M21123</guid>
      <dc:creator>Evarist_F_Intel</dc:creator>
      <dc:date>2015-06-25T13:28:02Z</dc:date>
    </item>
    <item>
      <title>yes, the problem is escalated</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050249#M21124</link>
      <description>&lt;P&gt;yes, the problem is escalated. we will change these description at the on the next updates.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jul 2015 18:52:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050249#M21124</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2015-07-03T18:52:49Z</dc:date>
    </item>
    <item>
      <title>the doc has been fixed into</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050250#M21125</link>
      <description>&lt;P&gt;the doc has been fixed into MKL v.11.3.1. we are sorry for delaying into notification.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2016 08:01:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Segmentation-fault-with-complex-ScaLAPACK/m-p/1050250#M21125</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2016-02-25T08:01:43Z</dc:date>
    </item>
  </channel>
</rss>

