<?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 How can I reuse sparse factorizations in Pardiso in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-can-I-reuse-sparse-factorizations-in-Pardiso/m-p/1032014#M20187</link>
    <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I have a serials of structurally identical matrixs such as {A1, A2, A3,....}&lt;/P&gt;

&lt;P&gt;and I need to solve &amp;nbsp;A*X=Y, for A1,A2,A3......., note that rho vector Y changes as time goes while all matrixs are kept constant ,&lt;/P&gt;

&lt;P&gt;so I need to solve all these equations at each time step.&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Is there any way I can do &amp;nbsp;factorization only once at the starting time and&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;stores all the computed factors in a memory efficient way so that I can solve the linear equations whenever the Y vectors are updated?&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Thank you!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;PS 1: I know I can store a array of pardiso handles like pt(:,N_matrixs) but I am afraid that in this way the internal memory cost would be&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;too much since all these matrixs are structures identically.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;PS 2: I don't understand why most sparse LU factorization package does not provide the users the actually LU matrixs, which are exactly what they are expected to to, instead, they prefer to use some kind of internal memory structures which nobody knows what they really are, except god.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Dec 2014 06:17:55 GMT</pubDate>
    <dc:creator>Jiuzhou_T_</dc:creator>
    <dc:date>2014-12-24T06:17:55Z</dc:date>
    <item>
      <title>How can I reuse sparse factorizations in Pardiso</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-can-I-reuse-sparse-factorizations-in-Pardiso/m-p/1032014#M20187</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;I have a serials of structurally identical matrixs such as {A1, A2, A3,....}&lt;/P&gt;

&lt;P&gt;and I need to solve &amp;nbsp;A*X=Y, for A1,A2,A3......., note that rho vector Y changes as time goes while all matrixs are kept constant ,&lt;/P&gt;

&lt;P&gt;so I need to solve all these equations at each time step.&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Is there any way I can do &amp;nbsp;factorization only once at the starting time and&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;stores all the computed factors in a memory efficient way so that I can solve the linear equations whenever the Y vectors are updated?&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Thank you!&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;PS 1: I know I can store a array of pardiso handles like pt(:,N_matrixs) but I am afraid that in this way the internal memory cost would be&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;too much since all these matrixs are structures identically.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;PS 2: I don't understand why most sparse LU factorization package does not provide the users the actually LU matrixs, which are exactly what they are expected to to, instead, they prefer to use some kind of internal memory structures which nobody knows what they really are, except god.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2014 06:17:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-can-I-reuse-sparse-factorizations-in-Pardiso/m-p/1032014#M20187</guid>
      <dc:creator>Jiuzhou_T_</dc:creator>
      <dc:date>2014-12-24T06:17:55Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-can-I-reuse-sparse-factorizations-in-Pardiso/m-p/1032015#M20188</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Looks like you can use parameter maxfct and mnum from pardiso interface that allow you for matrices with same structure have different factorization values.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alex&lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2014 06:23:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/How-can-I-reuse-sparse-factorizations-in-Pardiso/m-p/1032015#M20188</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2014-12-24T06:23:19Z</dc:date>
    </item>
  </channel>
</rss>

