<?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 hanging on factorization... in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-hanging-on-factorization/m-p/864453#M7752</link>
    <description>&lt;DIV style="margin:0px;"&gt;Sergey,&lt;BR /&gt;&lt;BR /&gt;As an update, reducing the number of refinement steps, even to IPARM(8) = 1, has no effect upon the solution time.&lt;BR /&gt;&lt;BR /&gt;Lee&lt;/DIV&gt;</description>
    <pubDate>Tue, 07 Jul 2009 21:02:02 GMT</pubDate>
    <dc:creator>ljbetche</dc:creator>
    <dc:date>2009-07-07T21:02:02Z</dc:date>
    <item>
      <title>PARDISO hanging on factorization...</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-hanging-on-factorization/m-p/864449#M7748</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;My understanding is that when using the direct-iterative preconditioning CGS routine in PARDISO, the full LU factorization is computed (i.e. direct solve) the first time a given system is solved, with the CGS, preconditioned with the initial LU matrices, used in subsequent solves. In attempting to solve an admittedly large system (~450,000 equations, ~25,000,000 non-zero elements) on a system with 8 Xeon cores and 16 GB RAM, I get the following on the first solve of the system:&lt;BR /&gt;&lt;BR /&gt;=== PARDISO is running in In-Core mode, because iparam(60)=0 ===&lt;BR /&gt;&lt;BR /&gt;Percentage of computed non-zeros for LL^T factorization&lt;BR /&gt;0 % 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 % 100 % &lt;BR /&gt;local PARDISO version is 106&lt;BR /&gt;&lt;BR /&gt;================ PARDISO: solving a real nonsymmetric system ================&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Summary PARDISO: ( reorder to solve )&lt;BR /&gt;================&lt;BR /&gt;&lt;BR /&gt;Times:&lt;BR /&gt;======&lt;BR /&gt;Time fulladj: 0.788188 s&lt;BR /&gt;Time reorder: 0.765143 s&lt;BR /&gt;Time symbfct: 2.455881 s&lt;BR /&gt;Time parlist: 0.047076 s&lt;BR /&gt;Time A to LU: 0.000000 s&lt;BR /&gt;Time numfct : 348.804676 s&lt;BR /&gt;Time cgs : 7.084059 s cgx iterations 1&lt;BR /&gt;&lt;BR /&gt;Time malloc : 1.102595 s&lt;BR /&gt;Time total : 362.927283 s total - sum: 1.879665 s&lt;BR /&gt;&lt;BR /&gt;Statistics:&lt;BR /&gt;===========&lt;BR /&gt;&amp;lt; Parallel Direct Factorization with #processors: &amp;gt; 8&lt;BR /&gt;&amp;lt; Hybrid Solver PARDISO with CGS/CG Iteration &amp;gt;&lt;BR /&gt;&lt;BR /&gt;&amp;lt; Linear system Ax = b&amp;gt; &lt;TRANSPOSE&gt; &lt;BR /&gt;#equations: 452232&lt;BR /&gt;#non-zeros in A: 27749790&lt;BR /&gt;non-zeros in A (%): 0.013569&lt;BR /&gt;&lt;BR /&gt;#right-hand sides: 1&lt;BR /&gt;&lt;BR /&gt;&amp;lt; Factors L and U &amp;gt; &lt;BR /&gt;#columns for each panel: 72&lt;BR /&gt;#independent subgraphs: 0&lt;BR /&gt;&amp;lt; Preprocessing with input permutation &amp;gt;&lt;BR /&gt;#supernodes: 34772&lt;BR /&gt;size of largest supernode: 12456&lt;BR /&gt;number of nonzeros in L 667911177&lt;BR /&gt;number of nonzeros in U 655048539&lt;BR /&gt;number of nonzeros in L+U 1322959716&lt;BR /&gt;gflop for the numerical factorization: 8263.608500&lt;BR /&gt;&lt;BR /&gt;gflop/s for the numerical factorization: 23.691221&lt;BR /&gt;&lt;BR /&gt;Is the more than 5 minutes taken to compute the factorization reasonable given the size of this problem? It seems odd, sincethe &lt;STRONG&gt;single-processor&lt;/STRONG&gt; CGS solver with ILU preconditioning I had previously been using solves the same problem in a few seconds. Also, it seems that the program "hangs" at one point, remaining at the"Percentage of computed non-zeros for LL^T factorization" line for most of the 5 minutes before ever printing out any of the percentages, leading me to believe that something is wrong. Note that the routine does, however, find the correct solution to the system. My code is written in Fortran 77 and compiled with ifort, andthe parameters I am using are:&lt;BR /&gt;&lt;BR /&gt;MTYPE = 11&lt;BR /&gt;IPARM(1) = 1 &lt;BR /&gt;IPARM(2) = 2&lt;BR /&gt;IPARM(3) = 8&lt;BR /&gt;IPARM(4) = 121&lt;BR /&gt;IPARM(5) = 2&lt;BR /&gt;IPARM(6) = 0&lt;BR /&gt;IPARM(7) = ITERMO&lt;BR /&gt;IPARM(8) = 2500&lt;BR /&gt;IPARM(10) = 13&lt;BR /&gt;IPARM(11) = 1&lt;BR /&gt;IPARM(13) = 1&lt;BR /&gt;IPARM(18) = 0&lt;BR /&gt;IPARM(19) = 0&lt;BR /&gt;&lt;BR /&gt;where ITERMO is the unit number for output and all other elements of IPARM are 0. Before calling PARDISO, Icall OMP_SET_NUM_THREADS(8). Does this seem like my code is hanging, or is the amount of time to be expected? If the latter, is there any way to reduce the time? Thank you.&lt;BR /&gt;&lt;BR /&gt;Lee&lt;/TRANSPOSE&gt;</description>
      <pubDate>Fri, 03 Jul 2009 21:27:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-hanging-on-factorization/m-p/864449#M7748</guid>
      <dc:creator>ljbetche</dc:creator>
      <dc:date>2009-07-03T21:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: PARDISO hanging on factorization...</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-hanging-on-factorization/m-p/864450#M7749</link>
      <description>&lt;DIV style="margin: 0px; height: auto;"&gt;&lt;/DIV&gt;
&lt;DIV style="margin:0px;"&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;As an update, thinking the problem may be a memory issue, I tried running with a single core and OOC PARDISO (IPARM(60) = 2). The total time for a solve of the same system for which the output is given above was substantially longer (&amp;gt;17 minutes),but the code hangs at the same point as before. Finally, I have noted that if I try to use IPARM(2) = 3, which is supposed to be the OpenMP version of the Metis algorithm, the code crashes with a ERROR = -1, "input inconsistent"; perhaps this suggests a further problem? &lt;BR /&gt;&lt;BR /&gt;Lee&lt;/DIV&gt;
&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Jul 2009 16:48:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-hanging-on-factorization/m-p/864450#M7749</guid>
      <dc:creator>ljbetche</dc:creator>
      <dc:date>2009-07-06T16:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: PARDISO hanging on factorization...</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-hanging-on-factorization/m-p/864451#M7750</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/433483"&gt;ljbetche&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;Hello,&lt;BR /&gt;&lt;BR /&gt;As an update, thinking the problem may be a memory issue, I tried running with a single core and OOC PARDISO (IPARM(60) = 2). The total time for a solve of the same system for which the output is given above was substantially longer (&amp;gt;17 minutes),but the code hangs at the same point as before. Finally, I have noted that if I try to use IPARM(2) = 3, which is supposed to be the OpenMP version of the Metis algorithm, the code crashes with a ERROR = -1, "input inconsistent"; perhaps this suggests a further problem? &lt;BR /&gt;&lt;BR /&gt;Lee&lt;/DIV&gt;
&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hi, Lee!&lt;BR /&gt;&lt;BR /&gt;Parallel version of METIS was implementedsince MKL 10.2 Beta, so "input inconsistent" error means thatversion of your MKL is (probably) 10.1 Updatexx. Could youcheck the version of MKL? Also, please try to decrease number of refinement steps (iparm(8)) from 2500 to 10, for example. It looks like PARDISO performed many steps to refine the solution.&lt;BR /&gt;&lt;BR /&gt;With best regards,&lt;BR /&gt;Sergey&lt;BR /&gt;</description>
      <pubDate>Tue, 07 Jul 2009 05:38:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-hanging-on-factorization/m-p/864451#M7750</guid>
      <dc:creator>Sergey_P_Intel2</dc:creator>
      <dc:date>2009-07-07T05:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: PARDISO hanging on factorization...</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-hanging-on-factorization/m-p/864452#M7751</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/275159"&gt;Sergey Pudov (Intel)&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;
&lt;DIV style="margin:0px;"&gt;&lt;/DIV&gt;
&lt;BR /&gt;Hi, Lee!&lt;BR /&gt;&lt;BR /&gt;Parallel version of METIS was implementedsince MKL 10.2 Beta, so "input inconsistent" error means thatversion of your MKL is (probably) 10.1 Updatexx. Could youcheck the version of MKL? Also, please try to decrease number of refinement steps (iparm(8)) from 2500 to 10, for example. It looks like PARDISO performed many steps to refine the solution.&lt;BR /&gt;&lt;BR /&gt;With best regards,&lt;BR /&gt;Sergey&lt;BR /&gt;&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Sergey,&lt;BR /&gt;&lt;BR /&gt;Thanks, I'll try reducing the refinement steps. According to the MKLinfo pagefor SHARCNet, our network of large cluster systems, we are using version 11.0.083. Does this sound correct? Is there another way to check the version?&lt;BR /&gt;&lt;BR /&gt;Lee</description>
      <pubDate>Tue, 07 Jul 2009 19:56:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-hanging-on-factorization/m-p/864452#M7751</guid>
      <dc:creator>ljbetche</dc:creator>
      <dc:date>2009-07-07T19:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: PARDISO hanging on factorization...</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-hanging-on-factorization/m-p/864453#M7752</link>
      <description>&lt;DIV style="margin:0px;"&gt;Sergey,&lt;BR /&gt;&lt;BR /&gt;As an update, reducing the number of refinement steps, even to IPARM(8) = 1, has no effect upon the solution time.&lt;BR /&gt;&lt;BR /&gt;Lee&lt;/DIV&gt;</description>
      <pubDate>Tue, 07 Jul 2009 21:02:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-hanging-on-factorization/m-p/864453#M7752</guid>
      <dc:creator>ljbetche</dc:creator>
      <dc:date>2009-07-07T21:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: PARDISO hanging on factorization...</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-hanging-on-factorization/m-p/864454#M7753</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/433483"&gt;ljbetche&lt;/A&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;!--[if gte mso 9]&gt;&lt;xml&gt; &lt;w:WordDocument&gt; &lt;w:View&gt;Normal&lt;/w:View&gt; &lt;w:Zoom&gt;0&lt;/w:Zoom&gt; &lt;w:PunctuationKerning /&gt; &lt;w:ValidateAgainstSchemas /&gt; &lt;w:SaveIfXMLInvalid&gt;false&lt;/w:SaveIfXMLInvalid&gt; &lt;w:IgnoreMixedContent&gt;false&lt;/w:IgnoreMixedContent&gt; &lt;w:AlwaysShowPlaceholderText&gt;false&lt;/w:AlwaysShowPlaceholderText&gt; &lt;w:Compatibility&gt; &lt;w:BreakWrappedTables /&gt; &lt;w:SnapToGridInCell /&gt; &lt;w:WrapTextWithPunct /&gt; &lt;w:UseAsianBreakRules /&gt; &lt;w:DontGrowAutofit /&gt; &lt;/w:Compatibility&gt; &lt;w:BrowserLevel&gt;MicrosoftInternetExplorer4&lt;/w:BrowserLevel&gt; &lt;/w:WordDocument&gt; &lt;/xml&gt;&lt;![endif]--&gt;&lt;!--[if gte mso 9]&gt;&lt;xml&gt; &lt;w:LatentStyles DefLockedState="false" LatentStyleCount="156"&gt; &lt;/w:LatentStyles&gt; &lt;/xml&gt;&lt;![endif]--&gt; &lt;!--[if gte mso 10]&gt; &lt;mce:style&gt;&lt;!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Table Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:""; 	mso-padding-alt:0in 5.4pt 0in 5.4pt; 	mso-para-margin:0in; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:"Times New Roman"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --&gt; &lt;!--[endif]--&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN style="font-size: 10pt; font-family: " ms="" sans="" serif=""&gt;Lee. &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN style="font-size: 10pt; font-family: " ms="" sans="" serif=""&gt;Compile Professional &lt;SPAN&gt; &lt;/SPAN&gt;Additional build 083 contains MKL version 10.1 update 1.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN style="font-family: " ms="" sans="" serif=""&gt;Please see the KB article:&lt;/SPAN&gt;&lt;A href="https://community.intel.com/../articles/which-version-of-ipp--mkl--tbb-is-installed-with-intel-compiler-professional-edition/"&gt;&lt;SPAN style="font-size: 10pt;"&gt;Which version of Intel IPP, Intel MKL and Intel TBB is installed by the Intel Compiler Professional Edition?&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN style="font-size: 10pt; font-family: " ms="" sans="" serif=""&gt; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN style="font-size: 10pt; font-family: " ms="" sans="" serif=""&gt;The problem you are discussing into this tread was fixed into the next version 10.2 &lt;/SPAN&gt;&lt;/P&gt;
&lt;P class="MsoNormal"&gt;&lt;SPAN style="font-size: 10pt; font-family: " ms="" sans="" serif=""&gt;--Gennady &lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jul 2009 15:28:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/PARDISO-hanging-on-factorization/m-p/864454#M7753</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2009-07-14T15:28:53Z</dc:date>
    </item>
  </channel>
</rss>

