<?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:PARDISO: ERROR during symbolic factorization: -3 (reordering problem)? in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-ERROR-during-symbolic-factorization-3-reordering-problem/m-p/1469311#M34387</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Glad to know that your issue is resolved. Thanks for accepting our solution. This thread will no longer be monitored by Intel. If you need additional information, please start a new question.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Fri, 24 Mar 2023 05:31:41 GMT</pubDate>
    <dc:creator>VarshaS_Intel</dc:creator>
    <dc:date>2023-03-24T05:31:41Z</dc:date>
    <item>
      <title>PARDISO: ERROR during symbolic factorization: -3 (reordering problem)?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-ERROR-during-symbolic-factorization-3-reordering-problem/m-p/1466884#M34361</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;I am using the pardiso direct solver to solve the system of equation obtained from finite element method applied on nonlinear PDE.&amp;nbsp;I will solve my problem for high number of matrix size (small mesh size) but now I discus only small number of size to fixed the code problems.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My data is in CRS (or CSR)&amp;nbsp; defined in three vectors _id, _ik, _sk and right hand side in vector f. I applying the copy command to transform its into array as:&lt;/P&gt;
&lt;P&gt;MKL_INT n = f.size();&lt;/P&gt;
&lt;P&gt;MKL_INT nnz = _sk.size();&lt;/P&gt;
&lt;P&gt;MKL_INT m = _id.size();&lt;BR /&gt;&amp;nbsp;ia[m];&lt;BR /&gt;copy(_id.begin(), _id.end(), ia);&lt;BR /&gt;MKL_INT ja[nnz];&lt;BR /&gt;copy(_ik.begin(), _ik.end(), ja);&lt;BR /&gt;double a[nnz];&lt;BR /&gt;copy(_sk.begin(), _sk.end(), a);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When I run the code it gives the error:&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;*** Error in PARDISO &amp;nbsp;( &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;reordering_phase) error_num= -180&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;*** error PARDISO: reordering, symbolic factorization&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;=== PARDISO: solving a real nonsymmetric system ===&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;1-based array indexing is turned ON&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;PARDISO double precision computation is turned ON&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;User provided fill-in reducing permutation is turned ON&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Summary: ( reordering phase )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;================&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Times:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;======&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Time spent in calculations of symmetric matrix portrait (fulladj): 0.000040 s&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Time spent in reordering of the initial matrix (reorder) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : 0.000000 s&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Time spent in symbolic factorization (symbfct) &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : 0.000705 s&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Time spent in allocation of internal data structures (malloc) &amp;nbsp; &amp;nbsp;: 0.000367 s&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Time spent in matching/scaling &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : 0.000001 s&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Time spent in additional calculations &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: 0.000042 s&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Total time spent &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : 0.001155 s&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Statistics:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;===========&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Parallel Direct Factorization is running on 48 OpenMP&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt; Linear system Ax = b &amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;number of equations: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 95&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;number of non-zeros in A: &amp;nbsp; &amp;nbsp; &amp;nbsp;2364&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;number of non-zeros in A (%): 26.193906&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;number of right-hand sides: &amp;nbsp; &amp;nbsp;1&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt; Factors L and U &amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;number of columns for each panel: 128&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;number of independent subgraphs: &amp;nbsp;0&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;lt; Preprocessing with input permutation &amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;number of supernodes: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;51&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;size of largest supernode: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 45&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;number of non-zeros in L: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2077&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;number of non-zeros in U: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;88&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;number of non-zeros in L+U: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2165&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Salman Ahmad: 4&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ERROR during symbolic factorization: -3make: *** [../ICC_default.mk:78: run] Error 1&lt;/SPAN&gt;"&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I noted one point, my number of nonzero is 2365 but here "&lt;SPAN&gt;number of non-zeros in A: &amp;nbsp; &amp;nbsp; &amp;nbsp;2364"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For code to past here for this specific example, n= 95, m = 96, nnz = 2365 and&lt;/P&gt;
&lt;P&gt;ia[m] = {values printed from ia};&lt;/P&gt;
&lt;P&gt;ja[nnz] = {values printed from ja};&lt;/P&gt;
&lt;P&gt;a[nnz] = {values printed from a};&lt;/P&gt;
&lt;P&gt;b[m] = {values printed from b};&lt;/P&gt;
&lt;P&gt;The code is in the attachment, please any suggestion to solve this problem!&lt;/P&gt;</description>
      <pubDate>Fri, 17 Mar 2023 02:41:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-ERROR-during-symbolic-factorization-3-reordering-problem/m-p/1466884#M34361</guid>
      <dc:creator>SAL_AHM</dc:creator>
      <dc:date>2023-03-17T02:41:25Z</dc:date>
    </item>
    <item>
      <title>Re:PARDISO: ERROR during symbolic factorization: -3 (reordering problem)?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-ERROR-during-symbolic-factorization-3-reordering-problem/m-p/1467138#M34369</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for posting in Intel Communities.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please let us know the OS details(linux/windows/macOS) and Intel oneAPI version you are using?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;And also, Could you please let us know the compilation options/ interface being used so that we could investigate more?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 17 Mar 2023 16:42:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-ERROR-during-symbolic-factorization-3-reordering-problem/m-p/1467138#M34369</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-03-17T16:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Re:PARDISO: ERROR during symbolic factorization: -3 (reordering problem)?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-ERROR-during-symbolic-factorization-3-reordering-problem/m-p/1467277#M34370</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;My OS is linux&amp;nbsp; and oneAPI version is 2023.0.0.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying on&amp;nbsp;icpc, also try icpx but still error.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Mar 2023 01:18:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-ERROR-during-symbolic-factorization-3-reordering-problem/m-p/1467277#M34370</guid>
      <dc:creator>SAL_AHM</dc:creator>
      <dc:date>2023-03-18T01:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: PARDISO: ERROR during symbolic factorization: -3 (reordering problem)?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-ERROR-during-symbolic-factorization-3-reordering-problem/m-p/1468133#M34377</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the details.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please find the modified attached zip file with code(code.txt) where we are able to get the results without any errors. Also, I have attached the results of the code(result.txt)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And, also you can find examples of the PARDISO in the following path (/opt/intel/oneapi/mkl/latest/examples/c/sparse_directsolvers/source)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please try and let us know if you facing any errors?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Varsha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Mar 2023 13:23:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-ERROR-during-symbolic-factorization-3-reordering-problem/m-p/1468133#M34377</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-03-21T13:23:22Z</dc:date>
    </item>
    <item>
      <title>Re:PARDISO: ERROR during symbolic factorization: -3 (reordering problem)?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-ERROR-during-symbolic-factorization-3-reordering-problem/m-p/1469311#M34387</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Glad to know that your issue is resolved. Thanks for accepting our solution. This thread will no longer be monitored by Intel. If you need additional information, please start a new question.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Mar 2023 05:31:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-ERROR-during-symbolic-factorization-3-reordering-problem/m-p/1469311#M34387</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-03-24T05:31:41Z</dc:date>
    </item>
  </channel>
</rss>

