<?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 ScaLAPACK: pzheev error 706: (eigenvalue computation) needs MB=NB  in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ScaLAPACK-pzheev-error-706-eigenvalue-computation-needs-MB-NB/m-p/1131270#M25604</link>
    <description>&lt;P&gt;UPDATE: sorry, my mistake, it IS in the documentation:&lt;/P&gt;

&lt;P&gt;*&amp;nbsp; Alignment requirements&lt;BR /&gt;
	*&amp;nbsp; ======================&lt;BR /&gt;
	*&lt;BR /&gt;
	*&amp;nbsp; The distributed submatrices A(IA:*, JA:*) and C(IC:IC+M-1,JC:JC+N-1)&lt;BR /&gt;
	*&amp;nbsp; must verify some alignment properties, namely the following&lt;BR /&gt;
	*&amp;nbsp; expressions should be true:&lt;BR /&gt;
	*&lt;BR /&gt;
	*&amp;nbsp; ( MB_A.EQ.NB_A.EQ.MB_Z .AND. IROFFA.EQ.IROFFZ .AND. IROFFA.EQ.0 .AND.&lt;BR /&gt;
	*&amp;nbsp; &amp;nbsp; IAROW.EQ.IZROW )&lt;BR /&gt;
	*&amp;nbsp; where&lt;BR /&gt;
	*&amp;nbsp; IROFFA = MOD( IA-1, MB_A ) and ICOFFA = MOD( JA-1, NB_A ).&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;---------------------------------------&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;The following is missing in the documentation of pzheev and one has to look into the source code in order to understand the error:&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;The blocking factors of the matrix to be diagonalized must be equal, otherwise one obtains an error with INFO= -706 (error in the 6th element of the DESCA array). This error originates from the source code lines in pzheev.f: (line 446 in the version that I have)&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ELSE IF( DESCA( MB_ ).NE.DESCA( NB_ ) ) THEN&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;INFO = -( 700+NB_ )&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;END IF&lt;/P&gt;

&lt;P&gt;The message is in order to help others with the same problem and/or the people who maintain the documentation of pzheev.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 28 May 2018 18:19:14 GMT</pubDate>
    <dc:creator>KNAnagnostopoulos</dc:creator>
    <dc:date>2018-05-28T18:19:14Z</dc:date>
    <item>
      <title>ScaLAPACK: pzheev error 706: (eigenvalue computation) needs MB=NB</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ScaLAPACK-pzheev-error-706-eigenvalue-computation-needs-MB-NB/m-p/1131270#M25604</link>
      <description>&lt;P&gt;UPDATE: sorry, my mistake, it IS in the documentation:&lt;/P&gt;

&lt;P&gt;*&amp;nbsp; Alignment requirements&lt;BR /&gt;
	*&amp;nbsp; ======================&lt;BR /&gt;
	*&lt;BR /&gt;
	*&amp;nbsp; The distributed submatrices A(IA:*, JA:*) and C(IC:IC+M-1,JC:JC+N-1)&lt;BR /&gt;
	*&amp;nbsp; must verify some alignment properties, namely the following&lt;BR /&gt;
	*&amp;nbsp; expressions should be true:&lt;BR /&gt;
	*&lt;BR /&gt;
	*&amp;nbsp; ( MB_A.EQ.NB_A.EQ.MB_Z .AND. IROFFA.EQ.IROFFZ .AND. IROFFA.EQ.0 .AND.&lt;BR /&gt;
	*&amp;nbsp; &amp;nbsp; IAROW.EQ.IZROW )&lt;BR /&gt;
	*&amp;nbsp; where&lt;BR /&gt;
	*&amp;nbsp; IROFFA = MOD( IA-1, MB_A ) and ICOFFA = MOD( JA-1, NB_A ).&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;---------------------------------------&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;The following is missing in the documentation of pzheev and one has to look into the source code in order to understand the error:&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;The blocking factors of the matrix to be diagonalized must be equal, otherwise one obtains an error with INFO= -706 (error in the 6th element of the DESCA array). This error originates from the source code lines in pzheev.f: (line 446 in the version that I have)&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ELSE IF( DESCA( MB_ ).NE.DESCA( NB_ ) ) THEN&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;INFO = -( 700+NB_ )&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;END IF&lt;/P&gt;

&lt;P&gt;The message is in order to help others with the same problem and/or the people who maintain the documentation of pzheev.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 May 2018 18:19:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ScaLAPACK-pzheev-error-706-eigenvalue-computation-needs-MB-NB/m-p/1131270#M25604</guid>
      <dc:creator>KNAnagnostopoulos</dc:creator>
      <dc:date>2018-05-28T18:19:14Z</dc:date>
    </item>
    <item>
      <title>thanks for the notes. we will</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ScaLAPACK-pzheev-error-706-eigenvalue-computation-needs-MB-NB/m-p/1131271#M25605</link>
      <description>&lt;P&gt;thanks for the notes. we will check and update the documentation.&lt;/P&gt;</description>
      <pubDate>Tue, 29 May 2018 01:04:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/ScaLAPACK-pzheev-error-706-eigenvalue-computation-needs-MB-NB/m-p/1131271#M25605</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2018-05-29T01:04:58Z</dc:date>
    </item>
  </channel>
</rss>

