<?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 There are several in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-error-1-input-inconsistent-what-does-it-mean/m-p/1032920#M20243</link>
    <description>&lt;P&gt;There are several possibilities, and we would have to see details of the arguments to locate the inconsistency. You can get Pardiso to reveal more information about the inconsistencies by setting iparm(27) = 1 before calling Pardiso. For example, I deliberately made an error in one of the values in the row pointer array; with iparm(27)=0, the error was not detected until later in the solution process, and the error message was not very helpful:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;*** Error in PARDISO  (        reordering_phase) error_num= -180
*** error PARDISO: reordering, symbolic factorization
&lt;/PRE&gt;

&lt;P&gt;When I set iparm(27)=1 and reran the program, I saw more useful information:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;*** Error in PARDISO  (incorrect input matrix  ) error_num= 21
*** Input check: i=8, ia(i)=19, ia(i+1)=16 are incompatible
 Reordering completed ...
 The following ERROR was detected:           -1&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 18 Sep 2015 12:19:07 GMT</pubDate>
    <dc:creator>mecej4</dc:creator>
    <dc:date>2015-09-18T12:19:07Z</dc:date>
    <item>
      <title>pardiso error=-1, input inconsistent, what does it mean?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-error-1-input-inconsistent-what-does-it-mean/m-p/1032919#M20242</link>
      <description>&lt;P&gt;I am feeding pardiso a diagonal matrix with several zeros on the main diagonal.&amp;nbsp; It is returning error=-1, "input inconsistent",&amp;nbsp;when I was expecting -7 for "diagonal matrix is singular".&lt;/P&gt;

&lt;P&gt;What exactly does "input inconsistent" mean?&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2015 11:45:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-error-1-input-inconsistent-what-does-it-mean/m-p/1032919#M20242</guid>
      <dc:creator>Brian_Murphy</dc:creator>
      <dc:date>2015-09-18T11:45:48Z</dc:date>
    </item>
    <item>
      <title>There are several</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-error-1-input-inconsistent-what-does-it-mean/m-p/1032920#M20243</link>
      <description>&lt;P&gt;There are several possibilities, and we would have to see details of the arguments to locate the inconsistency. You can get Pardiso to reveal more information about the inconsistencies by setting iparm(27) = 1 before calling Pardiso. For example, I deliberately made an error in one of the values in the row pointer array; with iparm(27)=0, the error was not detected until later in the solution process, and the error message was not very helpful:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;*** Error in PARDISO  (        reordering_phase) error_num= -180
*** error PARDISO: reordering, symbolic factorization
&lt;/PRE&gt;

&lt;P&gt;When I set iparm(27)=1 and reran the program, I saw more useful information:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;*** Error in PARDISO  (incorrect input matrix  ) error_num= 21
*** Input check: i=8, ia(i)=19, ia(i+1)=16 are incompatible
 Reordering completed ...
 The following ERROR was detected:           -1&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2015 12:19:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-error-1-input-inconsistent-what-does-it-mean/m-p/1032920#M20243</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-09-18T12:19:07Z</dc:date>
    </item>
    <item>
      <title>The matrix is real*8, simple</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-error-1-input-inconsistent-what-does-it-mean/m-p/1032921#M20244</link>
      <description>&lt;P&gt;The matrix is real*8,&amp;nbsp;simple and small, n=80 and nnz=36.&amp;nbsp;&amp;nbsp;All nonzero entries are on the main diagonal.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://community.intel.com/legacyfs/online/drupal_files/478080"&gt;478080&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;I am running pardiso in a DLL.&amp;nbsp; I'm still trying to figure out how to get it to print out the error message.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2015 19:06:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-error-1-input-inconsistent-what-does-it-mean/m-p/1032921#M20244</guid>
      <dc:creator>Brian_Murphy</dc:creator>
      <dc:date>2015-09-18T19:06:22Z</dc:date>
    </item>
    <item>
      <title>The matrix is 80 X 80, and</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-error-1-input-inconsistent-what-does-it-mean/m-p/1032922#M20245</link>
      <description>&lt;P&gt;The matrix is 80 X 80, and has only 36 nonzero elements, all on the diagonal. Thus, it is a diagonal matrix with 44 zeros on the diagonal. The matrix is definitely singular. What do you intend to do with this singular matrix? What do you expect Pardiso to do for you, given this matrix?&lt;/P&gt;

&lt;P&gt;Pardiso is a sophisticated high-performance solver for sparse linear equations. However, I would not rely on it to diagnose and do extensive analyses to pinpoint errors in the input arguments. The number of arguments to Pardiso is large, and the number of options specified in the &lt;STRONG&gt;iparm &lt;/STRONG&gt;array is large. Getting the correct values into these arguments and checking them for consistency is best done in user code preceding the call to Pardiso.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Sep 2015 20:58:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-error-1-input-inconsistent-what-does-it-mean/m-p/1032922#M20245</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-09-18T20:58:00Z</dc:date>
    </item>
    <item>
      <title>I am aware that the matrix is</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-error-1-input-inconsistent-what-does-it-mean/m-p/1032923#M20246</link>
      <description>&lt;P&gt;I am aware that the matrix is singular.&amp;nbsp; That is why I was wondering why pardiso didn't return error = -7.&amp;nbsp;&amp;nbsp;Why it returns&amp;nbsp;error = -1 is a bit of a mystery.&lt;/P&gt;

&lt;P&gt;In this particular situation, the matrix is a lumped mass matrix for a structural dynamics system.&amp;nbsp; The calculation using pardiso&amp;nbsp;is to compute initial accelerations for the beginning of a transient integration&amp;nbsp;(initial value problem).&amp;nbsp; The forces&amp;nbsp;applied to the system at t=0 are only at degrees of freedom with nonzero mass.&amp;nbsp; Since for this case the initial displacements and velocities are zero,&amp;nbsp;the initial accelerations are merely the nodal forces divided by the nodal masses.&amp;nbsp; When I call umfpack for this matrix, it returns&amp;nbsp;"singular matrix".&amp;nbsp; In spite of this condition&amp;nbsp;the solution is the correct one,&amp;nbsp;i.e. &amp;nbsp;xdd=F/m.&lt;/P&gt;

&lt;P&gt;The calculation case I'm trying to run isn't particularly realistic.&amp;nbsp; It is&amp;nbsp;from a published paper, and&amp;nbsp;I use it as a validation case for my code.&lt;/P&gt;

&lt;P&gt;My goal is not&amp;nbsp;for pardiso to give me the "correct" solution for this academic problem.&amp;nbsp; I just want to understand the error codes.&lt;/P&gt;</description>
      <pubDate>Sat, 19 Sep 2015 00:38:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-error-1-input-inconsistent-what-does-it-mean/m-p/1032923#M20246</guid>
      <dc:creator>Brian_Murphy</dc:creator>
      <dc:date>2015-09-19T00:38:40Z</dc:date>
    </item>
  </channel>
</rss>

