<?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 Re: strange pardiso error in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/strange-pardiso-error/m-p/1370224#M32934</link>
    <description>&lt;P&gt;Ned,&lt;/P&gt;
&lt;P&gt;it looks like a bug. Could you try another reordering ( iparm[1] == 2 or 3) mode&amp;nbsp; and enable the matrix checker (iparm[26]==1 ?&lt;/P&gt;
&lt;P&gt;-Gennady&lt;/P&gt;</description>
    <pubDate>Sat, 19 Mar 2022 05:46:51 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2022-03-19T05:46:51Z</dc:date>
    <item>
      <title>strange pardiso error</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/strange-pardiso-error/m-p/1370211#M32933</link>
      <description>&lt;P&gt;&lt;STRONG&gt;The following code&amp;nbsp;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;include &amp;lt;iostream&amp;gt;&lt;BR /&gt;#include &amp;lt;mkl.h&amp;gt;&lt;/P&gt;
&lt;P&gt;int main() {&lt;BR /&gt;MKL_INT iparm[64]{0};&lt;BR /&gt;MKL_INT mtype = -2;&lt;BR /&gt;MKL_INT nrhs = 1;&lt;/P&gt;
&lt;P&gt;MKL_INT maxfct = 1, mnum = 1, phase = 11, error = 0, msglvl = 1;&lt;BR /&gt;double ddum;&lt;BR /&gt;MKL_INT idum;&lt;BR /&gt;void *pt[64]{0};&lt;/P&gt;
&lt;P&gt;iparm[0] = 1;&lt;BR /&gt;iparm[34] = 1; // Zero-based indexing&lt;/P&gt;
&lt;P&gt;iparm[1] = 0; // Minimum degree reordering&lt;BR /&gt;iparm[10] = 1; // Scaling&lt;BR /&gt;iparm[12] = 1; // Weighted matching&lt;/P&gt;
&lt;P&gt;// 2-by-2 example&lt;BR /&gt;// [ 1 1 ]&lt;BR /&gt;// [ 1 1e-8]&lt;BR /&gt;double ele[3] = {1., 1., 1e-8};&lt;BR /&gt;MKL_INT indi[3] = {0, 1, 1};&lt;BR /&gt;MKL_INT start[3] = {0, 2, 3};&lt;BR /&gt;MKL_INT dim = 2;&lt;/P&gt;
&lt;P&gt;pardiso(pt, &amp;amp;maxfct, &amp;amp;mnum, &amp;amp;mtype, &amp;amp;phase, &amp;amp;dim, ele, start, indi, NULL,&lt;BR /&gt;&amp;amp;nrhs, iparm, &amp;amp;msglvl, &amp;amp;ddum, &amp;amp;ddum, &amp;amp;error);&lt;BR /&gt;std::cout &amp;lt;&amp;lt; "\n pardiso error code " &amp;lt;&amp;lt; error &amp;lt;&amp;lt; std::endl;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;produces&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;*** Error in PARDISO ( insufficient_memory) error_num= 1&lt;BR /&gt;*** Error in PARDISO memory allocation: MATCHING_REORDERING_DATA, allocation of 1 bytes failed&lt;BR /&gt;total memory wanted here: 13 kbyte&lt;/P&gt;
&lt;P&gt;=== PARDISO: solving a symmetric indefinite system ===&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Summary: ( reordering phase )&lt;BR /&gt;================&lt;/P&gt;
&lt;P&gt;Times:&lt;BR /&gt;======&lt;BR /&gt;Time spent in additional calculations : 0.001218 s&lt;BR /&gt;Total time spent : 0.001218 s&lt;/P&gt;
&lt;P&gt;Statistics:&lt;BR /&gt;===========&lt;BR /&gt;Parallel Direct Factorization is running on 1 OpenMP&lt;/P&gt;
&lt;P&gt;&amp;lt; Linear system Ax = b &amp;gt;&lt;BR /&gt;number of equations: 2&lt;BR /&gt;number of non-zeros in A: 2&lt;BR /&gt;number of non-zeros in A (%): 50.000000&lt;/P&gt;
&lt;P&gt;number of right-hand sides: 1&lt;/P&gt;
&lt;P&gt;&amp;lt; Factors L and U &amp;gt;&lt;BR /&gt;&amp;lt; Preprocessing with multiple minimum degree, tree height &amp;gt;&lt;BR /&gt;&amp;lt; Reduction for efficient parallel factorization &amp;gt;&lt;BR /&gt;number of columns for each panel: 128&lt;BR /&gt;number of independent subgraphs: 0&lt;BR /&gt;number of supernodes: 0&lt;BR /&gt;size of largest supernode: 0&lt;BR /&gt;number of non-zeros in L: 0&lt;BR /&gt;number of non-zeros in U: 0&lt;BR /&gt;number of non-zeros in L+U: 0&lt;/P&gt;
&lt;P&gt;pardiso error code -2&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;How can this be explained? Bug or?&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Thank you,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Ned&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Mar 2022 03:37:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/strange-pardiso-error/m-p/1370211#M32933</guid>
      <dc:creator>nedialk</dc:creator>
      <dc:date>2022-03-19T03:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: strange pardiso error</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/strange-pardiso-error/m-p/1370224#M32934</link>
      <description>&lt;P&gt;Ned,&lt;/P&gt;
&lt;P&gt;it looks like a bug. Could you try another reordering ( iparm[1] == 2 or 3) mode&amp;nbsp; and enable the matrix checker (iparm[26]==1 ?&lt;/P&gt;
&lt;P&gt;-Gennady&lt;/P&gt;</description>
      <pubDate>Sat, 19 Mar 2022 05:46:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/strange-pardiso-error/m-p/1370224#M32934</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2022-03-19T05:46:51Z</dc:date>
    </item>
    <item>
      <title>Re: strange pardiso error</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/strange-pardiso-error/m-p/1370256#M32935</link>
      <description>Hi Gennady,&lt;BR /&gt;&lt;BR /&gt;It is ok with 2 or 3.  Hope you can fix this problem.&lt;BR /&gt;Ned&lt;BR /&gt;Ned</description>
      <pubDate>Sat, 19 Mar 2022 14:42:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/strange-pardiso-error/m-p/1370256#M32935</guid>
      <dc:creator>nedialk</dc:creator>
      <dc:date>2022-03-19T14:42:48Z</dc:date>
    </item>
    <item>
      <title>Re:strange pardiso error</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/strange-pardiso-error/m-p/1389415#M33222</link>
      <description>&lt;P&gt;Hi Ned,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We are still looking at the issue.  We will let you the status once we discover the problem.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Khang&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Jun 2022 01:29:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/strange-pardiso-error/m-p/1389415#M33222</guid>
      <dc:creator>Khang_N_Intel</dc:creator>
      <dc:date>2022-06-02T01:29:14Z</dc:date>
    </item>
  </channel>
</rss>

