<?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 dcsrilut routine parameter in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dcsrilut-routine-parameter/m-p/1659481#M36857</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to use &lt;STRONG&gt;dcsrilut&lt;/STRONG&gt; to create a ilut preconditioner for a sparse iterative solver.&lt;/P&gt;&lt;P&gt;But it seems that the parameter &lt;STRONG&gt;maxfil&amp;nbsp;&lt;/STRONG&gt;doesn't mean the number of extra calculated entries in addition to the original non-zeros in the rows of LU factors. According to the explanation in the manual " &lt;EM&gt;&lt;SPAN class=""&gt;Maximum fill-in, which is half of the preconditioner bandwidth. The number of non-zero elements in the rows of the preconditioner cannot exceed &lt;/SPAN&gt;&lt;SPAN class=""&gt;(2*&lt;/SPAN&gt;&lt;SPAN class=""&gt;maxfil&lt;/SPAN&gt;&lt;SPAN class=""&gt;+1)&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;/EM&gt;", this is the number of total entries per row in LU factors.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anyone please clarify this? Do I misunderstand it, or is it different from the common meaning of &lt;STRONG&gt;maxfil&lt;/STRONG&gt; for ilut? Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lu&lt;/P&gt;</description>
    <pubDate>Wed, 22 Jan 2025 12:41:51 GMT</pubDate>
    <dc:creator>lke</dc:creator>
    <dc:date>2025-01-22T12:41:51Z</dc:date>
    <item>
      <title>dcsrilut routine parameter</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dcsrilut-routine-parameter/m-p/1659481#M36857</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to use &lt;STRONG&gt;dcsrilut&lt;/STRONG&gt; to create a ilut preconditioner for a sparse iterative solver.&lt;/P&gt;&lt;P&gt;But it seems that the parameter &lt;STRONG&gt;maxfil&amp;nbsp;&lt;/STRONG&gt;doesn't mean the number of extra calculated entries in addition to the original non-zeros in the rows of LU factors. According to the explanation in the manual " &lt;EM&gt;&lt;SPAN class=""&gt;Maximum fill-in, which is half of the preconditioner bandwidth. The number of non-zero elements in the rows of the preconditioner cannot exceed &lt;/SPAN&gt;&lt;SPAN class=""&gt;(2*&lt;/SPAN&gt;&lt;SPAN class=""&gt;maxfil&lt;/SPAN&gt;&lt;SPAN class=""&gt;+1)&lt;/SPAN&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&lt;/EM&gt;", this is the number of total entries per row in LU factors.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anyone please clarify this? Do I misunderstand it, or is it different from the common meaning of &lt;STRONG&gt;maxfil&lt;/STRONG&gt; for ilut? Thanks in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lu&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2025 12:41:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dcsrilut-routine-parameter/m-p/1659481#M36857</guid>
      <dc:creator>lke</dc:creator>
      <dc:date>2025-01-22T12:41:51Z</dc:date>
    </item>
    <item>
      <title>Re:dcsrilut routine parameter</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dcsrilut-routine-parameter/m-p/1664620#M36927</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I think the misunderstanding comes from the variety of definitions of the matrix bandwidth in the literature (it can be defined as a sum, sum+1 or max of upper and lower bandwidths). Using this terminology, the maxfil parameter corresponds to the maximum of lower and upper bandwidths of the preconditioner, thus the number of non-zero elements in the rows of the preconditioner is no bigger than 2*maxfil +1.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you provide a reference for the other (which you referred to as common) meaning of maxfil to help me further investigate the issue?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aleksandra&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 10 Feb 2025 11:47:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dcsrilut-routine-parameter/m-p/1664620#M36927</guid>
      <dc:creator>Aleksandra_K</dc:creator>
      <dc:date>2025-02-10T11:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Re:dcsrilut routine parameter</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dcsrilut-routine-parameter/m-p/1664632#M36928</link>
      <description>&lt;P&gt;Hi Aleksandra,&lt;/P&gt;&lt;P&gt;Thanks for your reply. I don't recall any specific reference, but some other iterative solvers adopt the following definition: numberofNonzero = 2*mafill+nL(i)+nU(i)+1, where nL and nU are the number of nonzero in the L and U parts of the i-th row of A, respectively.&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I don't think other solvers' implementation matters. What you have clarified is the only important thing to use correctly&amp;nbsp;&lt;SPAN class=""&gt;dcsrilut routine&lt;/SPAN&gt;. Thanks for it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lu&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2025 13:14:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dcsrilut-routine-parameter/m-p/1664632#M36928</guid>
      <dc:creator>lke</dc:creator>
      <dc:date>2025-02-10T13:14:14Z</dc:date>
    </item>
  </channel>
</rss>

