<?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 Incomplete Cholesky Factorization in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763655#M87</link>
    <description>&lt;I&gt;incomplete Cholesky preconditioner is unsymmetrical so you can't use it with CG&lt;BR /&gt;&lt;/I&gt;&lt;BR /&gt;Thats's not true. Incomplete Cholesky factorization is given by A = L * L^T, so it is symmetrical by design, in distinction from incomplete LU factorization. Yes, I cannot use LU factorization, that's from where my questions did arise.&lt;BR /&gt;&lt;BR /&gt;So, again: how can I compute incomplete Cholesky factorization with MKL?</description>
    <pubDate>Wed, 31 Aug 2011 15:27:24 GMT</pubDate>
    <dc:creator>Mikhail_Matrosov</dc:creator>
    <dc:date>2011-08-31T15:27:24Z</dc:date>
    <item>
      <title>Incomplete Cholesky Factorization</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763649#M81</link>
      <description>Hello,&lt;BR /&gt;&lt;BR /&gt;I'm using MKL RCI CG solver to solve large sparse SLE with symmetric and positive definite matrix. I would like to use an incomplete Cholesky factorization as a preconditioner. How can I compute it with MKL?&lt;BR /&gt;&lt;BR /&gt;There are routines for generating ILU0 and ILUT preconditioners described in "Preconditioners based on Incomplete LU Factorization Technique" section. However, it said that:&lt;BR /&gt;&lt;BR /&gt;&lt;I&gt;Avoid using these preconditioners with MKL RCI CG solver because in 
general, they produce non-symmetric resulting matrix even if the 
original matrix is symmetric. Usually, an inverse of the preconditioner 
is required in this case. To do this the Intel MKL triangular solver 
routine  &lt;A href="https://community.intel.com/../../sites/products/documentation/hpc/mkl/mklman/bla/functn_mkl_dcsrtrsv.htm#functn_mkl_dcsrtrsv"&gt;mkl_dcsrtrsv&lt;/A&gt; must be applied twice: for the low triangular part of the preconditioner, and then for its upper triangular part.&lt;BR /&gt;&lt;/I&gt;&lt;BR /&gt;So does these routines can be used to obtain incomplete Cholesky factorization? I.e. to compute L and U such that simply L = U^{T}? And what the phrase "&lt;I&gt;inverse of the preconditioner 
is required in this case ... &lt;/I&gt;&lt;I&gt;solver 
routine  &lt;A href="https://community.intel.com/../../sites/products/documentation/hpc/mkl/mklman/bla/functn_mkl_dcsrtrsv.htm#functn_mkl_dcsrtrsv"&gt;mkl_dcsrtrsv&lt;/A&gt; must be applied twice&lt;/I&gt;" does exactly means? There is an example of using this preconditioner on general matrix for MKL RCI FGMRES solver and it already utilizes two calls:&lt;BR /&gt;&lt;BR /&gt;&lt;SAMP class="codeph"&gt;call mkl_dcsrtrsv('L','N','U', &lt;VAR&gt;n&lt;/VAR&gt;, &lt;VAR&gt;bilut&lt;/VAR&gt;, &lt;VAR&gt;ibilut&lt;/VAR&gt;, &lt;VAR&gt;jbilut&lt;/VAR&gt;, tmp(ipar(22)),trvec)&lt;/SAMP&gt;
&lt;P&gt;&lt;SAMP class="codeph"&gt;call mkl_dcsrtrsv('U','N','N', &lt;VAR&gt;n&lt;/VAR&gt;, &lt;VAR&gt;bilut&lt;/VAR&gt;, &lt;VAR&gt;ibilut&lt;/VAR&gt;, &lt;VAR&gt;jbilut&lt;/VAR&gt;, trvec, tmp(ipar(23)))&lt;/SAMP&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2011 10:21:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763649#M81</guid>
      <dc:creator>Mikhail_Matrosov</dc:creator>
      <dc:date>2011-08-31T10:21:59Z</dc:date>
    </item>
    <item>
      <title>Incomplete Cholesky Factorization</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763650#M82</link>
      <description>Hi Mikhail,&lt;DIV&gt;RCI solver compute lower triangular matrix L and upper triangular matrix U that has sparse format and their multiplication is near initial matrix A. But in general case matrix L in not equal U^T. To apply preconditioner on your iterative solver you need to calulate z =(LU)^-1*r, where r is vector.&lt;/DIV&gt;&lt;DIV&gt;z=((LU)^-1)*r could be realized in two step:&lt;/DIV&gt;&lt;DIV&gt;y = (L^-1)*r;&lt;/DIV&gt;&lt;DIV&gt;z =(U^-1)*y using 2 call of mkl_dcsrtrsv.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;With best regards,&lt;/DIV&gt;&lt;DIV&gt;Alexander Kalinkin&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 31 Aug 2011 11:12:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763650#M82</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2011-08-31T11:12:48Z</dc:date>
    </item>
    <item>
      <title>Incomplete Cholesky Factorization</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763651#M83</link>
      <description>Ok, several more questions:&lt;BR /&gt;&lt;BR /&gt;Do I need to provide my symmetric matrix in full (non-symmetric) format for &lt;B&gt;dcsrilu0&lt;/B&gt; routine? How do the L and U matrices stored in the only output parameter &lt;B&gt;bilu0&lt;/B&gt; of this routine?&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Aug 2011 12:19:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763651#M83</guid>
      <dc:creator>Mikhail_Matrosov</dc:creator>
      <dc:date>2011-08-31T12:19:06Z</dc:date>
    </item>
    <item>
      <title>Incomplete Cholesky Factorization</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763652#M84</link>
      <description>Hi,&lt;DIV&gt;You need to provide full matrix format if you want to obtain incomplete Cholesky decomposition for this matrix. If you provide only lower or upper part of initial matrix as input parameter for dcsrilu0 routine you'd gotten incomplete Cholesky decomposition only for this part of matrix. About second question: L and U matrices stored in one matrix described by arrays ia, ja andbilu0.&lt;/DIV&gt;&lt;DIV&gt;With best regards,&lt;/DIV&gt;&lt;DIV&gt;Alexander Kalinkin&lt;/DIV&gt;</description>
      <pubDate>Wed, 31 Aug 2011 12:39:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763652#M84</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2011-08-31T12:39:40Z</dc:date>
    </item>
    <item>
      <title>Incomplete Cholesky Factorization</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763653#M85</link>
      <description>I did all as you said, but it doesn't seem to work. At least, convergance rate is much worse than for simple Jacobi preconditioner, so I assume something went wrong.&lt;BR /&gt;&lt;BR /&gt;Applying (LU)^-1 as a preconditioner is just what is done for RCI FGMRES for non-symmetric matrices. It is also done in MKL example dcsrilu0_exampl1.c for the same purpose. So, are you really sure, I should use the same scenario when working with symmetric matrix and PCI CG?.. I'm not very expirienced in numerical methods, so maybe I'm missing something obvious.&lt;BR /&gt;</description>
      <pubDate>Wed, 31 Aug 2011 14:34:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763653#M85</guid>
      <dc:creator>Mikhail_Matrosov</dc:creator>
      <dc:date>2011-08-31T14:34:19Z</dc:date>
    </item>
    <item>
      <title>Incomplete Cholesky Factorization</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763654#M86</link>
      <description>Mikhail,&lt;DIV&gt;Incomplete Cholesky preconditioner could be better than Jacobi in condition number sense in several cases but could be worse than it in other. There is not any theoretical results on quality of such preconditioner in general case. Moreover, incomplete Cholesky preconditioner is unsymmetrical so you can't use it with CG.&lt;/DIV&gt;&lt;DIV&gt;With best regards,&lt;/DIV&gt;&lt;DIV&gt;Alexander Kalinkin&lt;/DIV&gt;</description>
      <pubDate>Wed, 31 Aug 2011 15:03:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763654#M86</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2011-08-31T15:03:37Z</dc:date>
    </item>
    <item>
      <title>Incomplete Cholesky Factorization</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763655#M87</link>
      <description>&lt;I&gt;incomplete Cholesky preconditioner is unsymmetrical so you can't use it with CG&lt;BR /&gt;&lt;/I&gt;&lt;BR /&gt;Thats's not true. Incomplete Cholesky factorization is given by A = L * L^T, so it is symmetrical by design, in distinction from incomplete LU factorization. Yes, I cannot use LU factorization, that's from where my questions did arise.&lt;BR /&gt;&lt;BR /&gt;So, again: how can I compute incomplete Cholesky factorization with MKL?</description>
      <pubDate>Wed, 31 Aug 2011 15:27:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763655#M87</guid>
      <dc:creator>Mikhail_Matrosov</dc:creator>
      <dc:date>2011-08-31T15:27:24Z</dc:date>
    </item>
    <item>
      <title>Incomplete Cholesky Factorization</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763656#M88</link>
      <description>Ok, I've undersood you. Current version of MKL could calculate only incomplete LU decomposition but not incomplete L*L^T decomposition.&lt;DIV&gt;With best regards,&lt;/DIV&gt;&lt;DIV&gt;Alexander Kalinkin&lt;/DIV&gt;</description>
      <pubDate>Wed, 31 Aug 2011 18:46:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763656#M88</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2011-08-31T18:46:53Z</dc:date>
    </item>
    <item>
      <title>Incomplete Cholesky Factorization</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763657#M89</link>
      <description>That's sad. Is there a chance it will be introduced in the upcoming releases?</description>
      <pubDate>Fri, 02 Sep 2011 16:25:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763657#M89</guid>
      <dc:creator>Mikhail_Matrosov</dc:creator>
      <dc:date>2011-09-02T16:25:13Z</dc:date>
    </item>
    <item>
      <title>Incomplete Cholesky Factorization</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763658#M90</link>
      <description>Hi Mikhail,&lt;DIV&gt;If you provide data about your company or university I'd include into Feature Request on Incomplete Cholesky Factorization. You could do it using private answer.&lt;/DIV&gt;&lt;DIV&gt;With best regards,&lt;/DIV&gt;&lt;DIV&gt;Alexander Kalinkin&lt;/DIV&gt;</description>
      <pubDate>Sat, 03 Sep 2011 03:28:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/763658#M90</guid>
      <dc:creator>IDZ_A_Intel</dc:creator>
      <dc:date>2011-09-03T03:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: Incomplete Cholesky Factorization</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/1191265#M29741</link>
      <description>&lt;P&gt;Could you please fix that?&lt;/P&gt;
&lt;P&gt;The Incomplete Cholesky is very important.&lt;/P&gt;
&lt;P&gt;There are modern algorithms to parallelize it and optimize it. We expect the fastest factorization from the Intel guys :-).&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jul 2020 07:29:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Incomplete-Cholesky-Factorization/m-p/1191265#M29741</guid>
      <dc:creator>Royi</dc:creator>
      <dc:date>2020-07-10T07:29:03Z</dc:date>
    </item>
  </channel>
</rss>

