<?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 mkl_pardiso  error_num=8 in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1251970#M30790</link>
    <description>&lt;P&gt;Nowadays, I'm trying to solve a very large problem by mkl_pardiso. I have enough RAM which is 512G and enough disk memory which is 700G. I had tried to use in-core and out-core respectively to solve this problem, but the same error appeared as follows:&lt;/P&gt;
&lt;P&gt;*** Error in PARDISO ( insufficient_memory) error_num= 8&lt;BR /&gt;*** Error in PARDISO memory allocation: FACTORIZE_SOLVING_LU_DATA, allocation of 399802848 bytes failed&lt;BR /&gt;total memory wanted here: 431388504 kbyte&lt;/P&gt;
&lt;P&gt;I have not found the reason causing this error and could not solve that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 01 Feb 2021 15:13:03 GMT</pubDate>
    <dc:creator>wangsen</dc:creator>
    <dc:date>2021-02-01T15:13:03Z</dc:date>
    <item>
      <title>mkl_pardiso  error_num=8</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1251970#M30790</link>
      <description>&lt;P&gt;Nowadays, I'm trying to solve a very large problem by mkl_pardiso. I have enough RAM which is 512G and enough disk memory which is 700G. I had tried to use in-core and out-core respectively to solve this problem, but the same error appeared as follows:&lt;/P&gt;
&lt;P&gt;*** Error in PARDISO ( insufficient_memory) error_num= 8&lt;BR /&gt;*** Error in PARDISO memory allocation: FACTORIZE_SOLVING_LU_DATA, allocation of 399802848 bytes failed&lt;BR /&gt;total memory wanted here: 431388504 kbyte&lt;/P&gt;
&lt;P&gt;I have not found the reason causing this error and could not solve that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2021 15:13:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1251970#M30790</guid>
      <dc:creator>wangsen</dc:creator>
      <dc:date>2021-02-01T15:13:03Z</dc:date>
    </item>
    <item>
      <title>Re: mkl_pardiso  error_num=8</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1252008#M30792</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;
&lt;P&gt;According to the part of the mssage which says "&lt;SPAN&gt;total memory wanted here: 431388504 kbyte&lt;/SPAN&gt;", the amount of data required for the factorization at that place is ~ 421 Gb. While it is less than 512G which you say you have, remember that there is also a memory required for storing other information, e.g. from the first phase.&lt;/P&gt;
&lt;P&gt;My suggestion is:&lt;BR /&gt;&lt;SPAN style="font-family: inherit;"&gt;Split the call to pardiso (in case you call it with phase = 13) into three calls (phase = 11, phase = 22 and phase = 33). After the call with phase = 11 print out iparm[14]-iparm[17] (see&amp;nbsp;&lt;/SPAN&gt;&lt;A style="font-family: inherit; background-color: #ffffff;" href="https://software.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top/sparse-solver-routines/onemkl-pardiso-parallel-direct-sparse-solver-interface/pardiso-iparm-parameter.html" target="_blank"&gt;https://software.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top/sparse-solver-routines/onemkl-pardiso-parallel-direct-sparse-solver-interface/pardiso-iparm-parameter.html&lt;/A&gt;&lt;SPAN style="font-family: inherit;"&gt;).&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;1) for In-Core version: I assume that you will see that&amp;nbsp;&lt;SPAN&gt;max(&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit;"&gt;iparm&lt;/SPAN&gt;[14]&lt;SPAN&gt;,&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit;"&gt;iparm&lt;/SPAN&gt;[15]+&lt;SPAN style="font-family: inherit;"&gt;iparm&lt;/SPAN&gt;[16]&lt;LI-WRAPPER&gt;&lt;SPAN&gt;) (total peak consumption for In-Core mode) will be &amp;gt; 512 G.&lt;BR /&gt;2) for Out-of-Core version: as the description of iparm[59] and the KB article say, check that you have increased&amp;nbsp;MKL_PARDISO_OOC_MAX_CORE_SIZE as much as possible. For OOC mode the peak memory consumption is different, it is approx. the sum of the permanent memory required for phase 1 + minimal amount of RAM memory which is needed for OOC (OOC puts the majority of data on the disc but not everything).&lt;BR /&gt;I assume that in your case phase 1, iparm[15] is a huge number already so there is not enough RAM left even for the OOC factorization with reduced memory consumption.&lt;/SPAN&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Also, you can set msglvl = 1 and share with us the output from phase 1, as well as the output values of iparm[14]-iparm[17] after the first phase.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope this helps.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best,&lt;BR /&gt;Kirill&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Feb 2021 17:24:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1252008#M30792</guid>
      <dc:creator>Kirill_V_Intel</dc:creator>
      <dc:date>2021-02-01T17:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: mkl_pardiso  error_num=8</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1252207#M30794</link>
      <description>&lt;P&gt;Thanks for the quick reply!&lt;/P&gt;
&lt;P&gt;I have tried your advice to print iparm(14)~iparm(17). The results are as follows:&lt;/P&gt;
&lt;P&gt;###########################################################&lt;/P&gt;
&lt;P&gt;=== PARDISO: solving a complex symmetric system ===&lt;BR /&gt;1-based array indexing is turned ON&lt;BR /&gt;PARDISO double precision computation is turned ON&lt;BR /&gt;METIS algorithm at reorder step is turned ON&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 calculations of symmetric matrix portrait (fulladj): 4.072709 s&lt;BR /&gt;Time spent in reordering of the initial matrix (reorder) : 80.376569 s&lt;BR /&gt;Time spent in symbolic factorization (symbfct) : 48.914574 s&lt;BR /&gt;Time spent in data preparations for factorization (parlist) : 0.925490 s&lt;BR /&gt;Time spent in allocation of internal data structures (malloc) : 2.337880 s&lt;BR /&gt;Time spent in additional calculations : 35.297460 s&lt;BR /&gt;Total time spent : 171.924682 s&lt;/P&gt;
&lt;P&gt;Statistics:&lt;BR /&gt;===========&lt;BR /&gt;Parallel Direct Factorization is running on 52 OpenMP&lt;/P&gt;
&lt;P&gt;&amp;lt; Linear system Ax = b &amp;gt;&lt;BR /&gt;number of equations: 8578350&lt;BR /&gt;number of non-zeros in A: 341060574&lt;BR /&gt;number of non-zeros in A (%): 0.000463&lt;/P&gt;
&lt;P&gt;number of right-hand sides: 750&lt;/P&gt;
&lt;P&gt;&amp;lt; Factors L and U &amp;gt;&lt;BR /&gt;number of columns for each panel: 96&lt;BR /&gt;number of independent subgraphs: 0&lt;BR /&gt;&amp;lt; Preprocessing with state of the art partitioning metis&amp;gt;&lt;BR /&gt;number of supernodes: 833888&lt;BR /&gt;size of largest supernode: 46866&lt;BR /&gt;number of non-zeros in L: 26367541862&lt;BR /&gt;number of non-zeros in U: 1&lt;BR /&gt;number of non-zeros in L+U: 26367541863&lt;BR /&gt;iparm14 0&lt;BR /&gt;iparm15 26143180&lt;BR /&gt;iparm16 22409342&lt;BR /&gt;iparm17 433185621&lt;BR /&gt;max ! 48552522&lt;BR /&gt;=== PARDISO is running in In-Core mode, because iparam(60)=0 ===&lt;BR /&gt;*** Error in PARDISO ( insufficient_memory) error_num= 8&lt;BR /&gt;*** Error in PARDISO memory allocation: FACTORIZE_SOLVING_LU_DATA, allocation of 417321914 bytes failed&lt;BR /&gt;total memory wanted here: 439731255 kbyte&lt;/P&gt;
&lt;P&gt;############################################&lt;/P&gt;
&lt;P&gt;According to the above result, I think the memory required is (iparm[16]+iparm[17]) which is below 512G.&amp;nbsp; Why did such an error happen? How can I solve this error except by increasing the RAM or reducing the equation?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 02:46:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1252207#M30794</guid>
      <dc:creator>wangsen</dc:creator>
      <dc:date>2021-02-02T02:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: mkl_pardiso  error_num=8</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1252221#M30795</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;
&lt;P&gt;Thanks for sharing the numbers! It does seem to me that indeed the peak total memory should be no more than approx. (&lt;SPAN&gt;22409342 + 433185621) Kb ~ 456 Gb &lt;/SPAN&gt;so that it should fit into 512 Gb RAM.&lt;/P&gt;
&lt;P&gt;I see several possibilities:&lt;/P&gt;
&lt;P&gt;1) The memory estimate provided by PARDISO is not accurate and the actual memory consumption is more than reported.&amp;nbsp;&lt;BR /&gt;2) There is something else which eats the memory. Can there be any other data in the application that consumes a significant amount of RAM?&lt;/P&gt;
&lt;P&gt;To check 1) on our side, we'd need your data so that we can set up our own experiment and see what happens inside the solver. If it is possible, please share your data&lt;/P&gt;
&lt;P&gt;I have a couple of suggestions:&lt;BR /&gt;1) How many rhs are do you have? If you have multiple of them, do a loop with phase = 33 with a single rhs.&lt;BR /&gt;&lt;SPAN style="font-family: inherit;"&gt;2) Decrease the number of threads (say, use twice less).&lt;BR /&gt;The rationale is that there is certain amount of memory used in PARDISO which is proportional to #rhs, #threads and even #rhs * #threads, if I am not mistaken. Check if doing 1) or 2) reduces the numbers reported and fixes the failure on allocation.&lt;BR /&gt;3) I think you're using iparm[23]=0 or you have scaling &amp;amp;matching on. Turn off matching &amp;amp; scaling (iparm[10] = iparm[12] = 0) and try with iparm[23] = 1. The PARDISO output should become smaller which would indicate implicitly that another major factorization algorithm is used, which can fix the memory issue potentially.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit;"&gt;4) Have you considered switching to our Cluster Sparse Solver (distributed direct sparse solver)? You could use several compute nodes to fight against the RAM limitation.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Best,&lt;BR /&gt;Kirill&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Feb 2021 04:14:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1252221#M30795</guid>
      <dc:creator>Kirill_V_Intel</dc:creator>
      <dc:date>2021-02-02T04:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: mkl_pardiso  error_num=8</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1252769#M30829</link>
      <description>&lt;P&gt;Thanks, again!&lt;/P&gt;
&lt;P&gt;I have changed to an HPC platform with 1T memory. Now there are no errors. The output is as follows:&lt;/P&gt;
&lt;P&gt;#############################################################################&lt;/P&gt;
&lt;P&gt;=== PARDISO: solving a complex symmetric system ===&lt;BR /&gt;1-based array indexing is turned ON&lt;BR /&gt;PARDISO double precision computation is turned ON&lt;BR /&gt;METIS algorithm at reorder step is turned ON&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 calculations of symmetric matrix portrait (fulladj): 2.184849 s&lt;BR /&gt;Time spent in reordering of the initial matrix (reorder) : 50.963541 s&lt;BR /&gt;Time spent in symbolic factorization (symbfct) : 36.010459 s&lt;BR /&gt;Time spent in data preparations for factorization (parlist) : 0.278686 s&lt;BR /&gt;Time spent in allocation of internal data structures (malloc) : 0.782705 s&lt;BR /&gt;Time spent in additional calculations : 17.872615 s&lt;BR /&gt;Total time spent : 108.092855 s&lt;/P&gt;
&lt;P&gt;Statistics:&lt;BR /&gt;===========&lt;BR /&gt;Parallel Direct Factorization is running on 64 OpenMP&lt;/P&gt;
&lt;P&gt;&amp;lt; Linear system Ax = b &amp;gt;&lt;BR /&gt;number of equations: 8578350&lt;BR /&gt;number of non-zeros in A: 341060648&lt;BR /&gt;number of non-zeros in A (%): 0.000463&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;number of columns for each panel: 192&lt;BR /&gt;number of independent subgraphs: 0&lt;BR /&gt;&amp;lt; Preprocessing with state of the art partitioning metis&amp;gt;&lt;BR /&gt;number of supernodes: 810389&lt;BR /&gt;size of largest supernode: 42072&lt;BR /&gt;number of non-zeros in L: 25587382264&lt;BR /&gt;number of non-zeros in U: 1&lt;BR /&gt;number of non-zeros in L+U: 25587382265&lt;BR /&gt;iparm14 0&lt;BR /&gt;iparm15 43927359&lt;BR /&gt;iparm16 36780394&lt;BR /&gt;iparm17 440462269&lt;BR /&gt;max ! 80707753&lt;BR /&gt;ooc_max_core_size got by Env=1000000000&lt;BR /&gt;ooc_max_swap_size got by Env=1000000000&lt;BR /&gt;ooc_keep_file got by Env=0&lt;BR /&gt;The file ./pardiso_ooc.cfg was not opened&lt;BR /&gt;=== PARDISO is running in In-Core mode, because iparam(60)=1 and there is enough RAM for In-Core ===&lt;/P&gt;
&lt;P&gt;Percentage of computed non-zeros for LL^T factorization&lt;BR /&gt;1 % 2 % 3 % 4 % 5 % 6 % 7 % 8 % 9 % 10 % 11 % 12 % 13 % 14 % 15 % 16 % 17 % 18 % 19 % 20 % 21 % 22 % 23 % 24 % 25 % 26 % 27 % 28 % 29 % 30 % 31 % 32 % 33 % 34 % 35 % 36 % 37 % 38 % 39 % 40 % 41 % 42 % 43 % 44 % 45 % 46 % 47 % 48 % 49 % 50 % 51 % 52 % 53 % 54 % 55 % 56 % 57 % 58 % 59 % 60 % 61 % 62 % 63 % 64 % 65 % 66 % 67 % 68 % 70 % 72 % 73 % 74 % 75 % 77 % 78 % 80 % 81 % 83 % 84 % 86 % 87 % 89 % 90 % 92 % 93 % 95 % 96 % 97 % 99 % 100 %&lt;/P&gt;
&lt;P&gt;=== PARDISO: solving a complex symmetric system ===&lt;BR /&gt;Single-level factorization algorithm is turned ON&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Summary: ( factorization phase )&lt;BR /&gt;================&lt;/P&gt;
&lt;P&gt;Times:&lt;BR /&gt;======&lt;BR /&gt;Time spent in copying matrix to internal data structure (A to LU): 0.000000 s&lt;BR /&gt;Time spent in factorization step (numfct) : 896.804199 s&lt;BR /&gt;Time spent in allocation of internal data structures (malloc) : 0.000631 s&lt;BR /&gt;Time spent in additional calculations : 0.000006 s&lt;BR /&gt;Total time spent : 896.804836 s&lt;/P&gt;
&lt;P&gt;Statistics:&lt;BR /&gt;===========&lt;BR /&gt;Parallel Direct Factorization is running on 64 OpenMP&lt;/P&gt;
&lt;P&gt;&amp;lt; Linear system Ax = b &amp;gt;&lt;BR /&gt;number of equations: 8578350&lt;BR /&gt;number of non-zeros in A: 341060648&lt;BR /&gt;number of non-zeros in A (%): 0.000463&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;number of columns for each panel: 192&lt;BR /&gt;number of independent subgraphs: 0&lt;BR /&gt;&amp;lt; Preprocessing with state of the art partitioning metis&amp;gt;&lt;BR /&gt;number of supernodes: 810389&lt;BR /&gt;size of largest supernode: 42072&lt;BR /&gt;number of non-zeros in L: 25587382264&lt;BR /&gt;number of non-zeros in U: 1&lt;BR /&gt;number of non-zeros in L+U: 25587382265&lt;BR /&gt;gflop for the numerical factorization: 1668942.981819&lt;/P&gt;
&lt;P&gt;gflop/s for the numerical factorization: 1860.989259&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;=== PARDISO: solving a complex symmetric system ===&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Summary: ( solution phase )&lt;BR /&gt;================&lt;/P&gt;
&lt;P&gt;Times:&lt;BR /&gt;======&lt;BR /&gt;Time spent in direct solver at solve step (solve) : 53.879760 s&lt;BR /&gt;Time spent in additional calculations : 52.638003 s&lt;BR /&gt;Total time spent : 106.517763 s&lt;/P&gt;
&lt;P&gt;#######################################################################&lt;/P&gt;
&lt;P&gt;But bad luck, a new problem appeared. The results obtained are NAN. I tried many solutions but failed. So I adjusted my example whose equations were reduced to 4500000 (origin is 8570000). The adjusted example got well results. So how can I solve this problem in the condition of keeping my original equation? Does PARDISO have a limit in solving equations?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;#########################################################################&lt;/P&gt;
&lt;P&gt;My current iparm settings are as follows:&lt;BR /&gt;iparm=0&lt;BR /&gt;iparm( 1)= 1! &lt;BR /&gt;iparm( 2)= 2 ! the minimum degree algorithm is applied&lt;BR /&gt;iparm(3)=mkl_set_num_threads(64)&lt;BR /&gt;iparm( 4)= 0 ! no iterative-direct algorithm&lt;BR /&gt;iparm( 5)= 0 ! no user fill-in reducing permutation&lt;BR /&gt;iparm( 6)= 0 ! =0 solution on the first n compoments of x&lt;BR /&gt;iparm( 8)= 0 ! numbers of iterative refinement steps&lt;BR /&gt;iparm(10)= 8 ! perturbe the pivot elements with 1e-8&lt;BR /&gt;iparm(11)= 0 ! 0 for symmetric indefinite matrices (mtype =-2, mtype =-4, or mtype =6)&lt;BR /&gt;iparm(13)= 0 ! maximum weighted matching algorithm is switched-off (default for symmetric). try iparm(13) = 1 in case of inappropriate accuracy&lt;BR /&gt;iparm(14)= 0 ! output: number of perturbed pivots&lt;BR /&gt;iparm(18)= 0 ! output: number of nonzeros in the factor lu&lt;BR /&gt;iparm(19)= 0 ! output: mflops for lu factorization&lt;BR /&gt;iparm(20)= 0 ! output: numbers of cg iterations&lt;BR /&gt;iparm(60)= 1 ! &lt;BR /&gt;################################################################&lt;/P&gt;
&lt;P&gt;Looking forward to your responses!&lt;/P&gt;</description>
      <pubDate>Wed, 03 Feb 2021 14:38:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1252769#M30829</guid>
      <dc:creator>wangsen</dc:creator>
      <dc:date>2021-02-03T14:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: mkl_pardiso  error_num=8</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1253643#M30849</link>
      <description>&lt;P&gt;Hi again,&lt;/P&gt;
&lt;P&gt;There are a couple of comments regarding your iparm settings:&lt;/P&gt;
&lt;P&gt;Do you initialize your iparm with all zeros before changing some specific ones? I hope you do.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;iparm( 1)= 1!&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iparm( 2)= 2 ! the minimum degree algorithm is applied&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iparm(3)=&lt;STRONG&gt;mkl_set_num_threads(64) ! must be 0, see the docs&amp;nbsp;&lt;A href="https://software.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-fortran/top/sparse-solver-routines/onemkl-pardiso-parallel-direct-sparse-solver-interface/pardiso-iparm-parameter.html" target="_blank"&gt;https://software.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-fortran/top/sparse-solver-routines/onemkl-pardiso-parallel-direct-sparse-solver-interface/pardiso-iparm-parameter.html&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iparm( 4)= 0 ! no iterative-direct algorithm&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iparm( 5)= 0 ! no user fill-in reducing permutation&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iparm( 6)= 0 ! =0 solution on the first n compoments of x&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iparm( 8)= 0 ! numbers of iterative refinement steps&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iparm(10)= 8 ! perturbe the pivot elements with 1e-8&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iparm(11)= 0 ! 0 for symmetric indefinite matrices (mtype =-2, mtype =-4, or mtype =6)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iparm(13)= 0 ! maximum weighted matching algorithm is switched-off (default for symmetric). try iparm(13) = &lt;STRONG&gt;1 in case of inappropriate accuracy, ! please try with 0 as one experiment&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iparm(14)= 0 ! output: number of perturbed pivots&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iparm(18)= 0 ! output: number of nonzeros in the factor lu&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iparm(19)= 0 ! output: mflops for lu factorization&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iparm(20)= 0 ! output: numbers of cg iterations&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;iparm(60)= 1 !&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;iparm(23) = &lt;STRONG&gt;1 as another experiment, try setting iparm(24)=1 together with iparm(13)=0&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Also, which version of MKL are you using? If smth old, please try the latest.&lt;/P&gt;
&lt;P&gt;If bad behavior remains, please share with us your matrix data so that we can reproduce and analyze the issue on our side.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;BR /&gt;Kirill&lt;/P&gt;</description>
      <pubDate>Sat, 06 Feb 2021 00:42:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1253643#M30849</guid>
      <dc:creator>Kirill_V_Intel</dc:creator>
      <dc:date>2021-02-06T00:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: mkl_pardiso  error_num=8</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1255274#M30881</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/150218"&gt;@wangsen&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any updates on this?&lt;/P&gt;
&lt;P&gt;Just a quick reminder to share your MKL version.&lt;/P&gt;
&lt;P&gt;Let us know if you face any issues.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Rahul&lt;/P&gt;</description>
      <pubDate>Wed, 17 Feb 2021 12:21:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1255274#M30881</guid>
      <dc:creator>RahulV_intel</dc:creator>
      <dc:date>2021-02-17T12:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: mkl_pardiso  error_num=8</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1257170#M30912</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/150218"&gt;@wangsen&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please let us know if your issue is resolved?&lt;/P&gt;
&lt;P&gt;If not, could you please share your matrix data so that we can try it out at our end?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Rahul&lt;/P&gt;</description>
      <pubDate>Thu, 18 Feb 2021 11:54:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1257170#M30912</guid>
      <dc:creator>RahulV_intel</dc:creator>
      <dc:date>2021-02-18T11:54:33Z</dc:date>
    </item>
    <item>
      <title>Re:mkl_pardiso  error_num=8</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1259230#M30945</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;I have not heard back from you. So, I will go ahead and close this thread from my end. Feel free to post a new query if you require further assistance from Intel.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Feb 2021 09:39:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/mkl-pardiso-error-num-8/m-p/1259230#M30945</guid>
      <dc:creator>RahulV_intel</dc:creator>
      <dc:date>2021-02-25T09:39:22Z</dc:date>
    </item>
  </channel>
</rss>

