<?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_schur.c with pardiso_export in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746657#M37561</link>
    <description>&lt;P&gt;Hmm, yes it compiles but the code is not correct:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;the Schur matrix is printed like a dense Schur matrix (but it should be sparse)&lt;/LI&gt;&lt;LI&gt;there is only a 331 phase, but no 332 phase&lt;/LI&gt;&lt;LI&gt;the iparm array is possibly not correctly indexed (Fortran indexing instead of C indexing?)&lt;/LI&gt;&lt;LI&gt;in ILP64 mode the code crashes, possibly also due to the wrong (dense) printing loop&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 04 May 2026 10:09:48 GMT</pubDate>
    <dc:creator>rbunger</dc:creator>
    <dc:date>2026-05-04T10:09:48Z</dc:date>
    <item>
      <title>pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343611#M32430</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I try to combine&amp;nbsp;pardiso_schur.c with pardiso_export, and i want to&amp;nbsp;get the Schur complement matrix and also compute all factorization arrays.&lt;/P&gt;
&lt;P&gt;After read the develop reference and sample code of&amp;nbsp;pardiso_export, i set iparms like this:&lt;/P&gt;
&lt;LI-CODE lang="cpp"&gt;    for ( i = 0; i &amp;lt; 64; i++ )
    {
        iparm[i] = 0;
    }
    iparm[1-1] = 1;         /* No solver default */
    iparm[2-1] = 2;         /* Fill-in reordering from METIS */
    iparm[10-1] = 8;        /* Perturb the pivot elements with 1E-13 */
    iparm[11-1] = 0;        /* Use nonsymmetric permutation and scaling MPS */
    iparm[13-1] = 0;        /* Maximum weighted matching algorithm is switched-off (default for symmetric). Try iparm[12] = 1 in case of inappropriate accuracy */
    iparm[14-1] = 0;        /* Output: Number of perturbed pivots */
    iparm[18-1] = -1;       /* Output: Number of nonzeros in the factor LU */
    iparm[19-1] = -1;       /* Output: Mflops for LU factorization */
    iparm[36-1] = -2;        /* Use Schur complement */
    iparm[24-1] = 1;

    maxfct = 1;           /* Maximum number of numerical factorizations. */
    mnum = 1;             /* Which factorization to use. */
    msglvl = 1;           /* Print statistical information in file */
    error = 0;            /* Initialize error flag */&lt;/LI-CODE&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;
&lt;P&gt;After pardiso_export, the schur results are:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;schur_values: -7.64499 -7.72346 19.0363
schur_ia: 0 1 3
scur_ja: 0 0 1

pardiso_schur.c:
-7.644985e+00 -7.723464e+00 
-7.723464e+00 1.903631e+01 &lt;/LI-CODE&gt;
&lt;P&gt;the schur_ia and schur_ja are not correct.&lt;/P&gt;
&lt;P&gt;And after phase 22, i check the result of phase 331:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;0
-7.4
1
1
1
0.588926
-2.14191
2.08939

pardiso_schur.c:
0
0.0931208
1
0.142857
0.2
-0.326816
-2.98962
2.08939&lt;/LI-CODE&gt;
&lt;P&gt;it doesn't match either.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Do I set the iparm wrong or other ipram should be set?&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/111125"&gt;@Kirill_V_Intel&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 10:28:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343611#M32430</guid>
      <dc:creator>Qigeng</dc:creator>
      <dc:date>2021-12-13T10:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343748#M32432</link>
      <description>&lt;P&gt;Hi!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please provide full code which you are running?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From what you described, the usage seems to be correct. And as a quick experiment, do you get correct Schur complement for iparm[36] = 2 (dense) or -1 (sparse)?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best,&lt;BR /&gt;Kirill&lt;/P&gt;</description>
      <pubDate>Mon, 13 Dec 2021 19:07:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343748#M32432</guid>
      <dc:creator>Kirill_V_Intel</dc:creator>
      <dc:date>2021-12-13T19:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343866#M32433</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;I provide the patch of my code on pardiso_schur.c&lt;/P&gt;
&lt;P&gt;I tried&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;iparm[36] = -1 for sparse, the schur complement result is the same and result of phase 331 is not correct:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;# result of schur complement:
schur_values: -7.64499 -7.72346 19.0363
schur_ia: 0 1 3
schur_ja: 0 0 1

pardiso_schur.c:
-7.644985e+00 -7.723464e+00 
-7.723464e+00 1.903631e+01 

# result of phase 331:
1
0.6
1.85714
1
1
0.588926
-2.14191
2.08939

pardiso_schur.c:
0
0.0931208
1
0.142857
0.2
-0.326816
-2.98962
2.08939&lt;/LI-CODE&gt;
&lt;P&gt;and for my understanding, the schur_ia should be: 0 2 3, and schur_ja should be: 0 1 1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 03:11:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343866#M32433</guid>
      <dc:creator>Qigeng</dc:creator>
      <dc:date>2021-12-14T03:11:17Z</dc:date>
    </item>
    <item>
      <title>Re:pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343871#M32434</link>
      <description>&lt;P&gt;Zhang,&lt;/P&gt;&lt;P&gt;it looks like a real problem and we will escalate it. The thread will be updated if needed.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 14 Dec 2021 03:57:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343871#M32434</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2021-12-14T03:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: Re:pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343878#M32435</link>
      <description>&lt;P&gt;Get it!&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 04:37:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343878#M32435</guid>
      <dc:creator>Qigeng</dc:creator>
      <dc:date>2021-12-14T04:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343884#M32436</link>
      <description>&lt;P&gt;While it has no impact on the observed incorrectness, was it intentional that in your patch you additionally set iparm[36]=-1 (as well as iparm[36-1]=-1 for Schur complement option) which additionally adds VBSR feature?&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR /&gt;Kirill&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 05:15:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343884#M32436</guid>
      <dc:creator>Kirill_V_Intel</dc:creator>
      <dc:date>2021-12-14T05:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343889#M32437</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;
&lt;P&gt;I'm not meanful to set&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;iparm[36]=-1. I add two results, for the first one, I don't set&amp;nbsp;iparm[36]=-1.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;And I noticed your reply "&amp;nbsp;do you get correct Schur complement for iparm[36] = 2 (dense) or -1 (sparse)?", so I think I can try it.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As a result, the patch has "iparm[36]=-1".&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 05:29:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343889#M32437</guid>
      <dc:creator>Qigeng</dc:creator>
      <dc:date>2021-12-14T05:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343902#M32438</link>
      <description>&lt;P&gt;Thanks for the clarification!&lt;/P&gt;
&lt;P&gt;Based on the quick analysis, for symmetric matrix types we do return a lower-triangular CSR for Schur which explains what you see for Schur indexing arrays (they are correct as far as I understand, but just for the lower triangular instead of the upper-triangular which you expected).&lt;/P&gt;
&lt;P&gt;As for why the result of phase 331 is incorrect, currently no updates.&lt;/P&gt;
&lt;P&gt;Best,&lt;BR /&gt;Kirill&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 06:14:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343902#M32438</guid>
      <dc:creator>Kirill_V_Intel</dc:creator>
      <dc:date>2021-12-14T06:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343929#M32442</link>
      <description>&lt;P&gt;I see.&lt;/P&gt;
&lt;P&gt;It's reasonable that the format is &lt;SPAN&gt;lower-triangular CSR.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BTW, I test pardiso and find both&amp;nbsp;&lt;SPAN&gt;lower-triangular and&amp;nbsp;upper-triangular csr format are accepeted.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Dec 2021 08:19:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1343929#M32442</guid>
      <dc:creator>Qigeng</dc:creator>
      <dc:date>2021-12-14T08:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1736084#M37522</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi,&amp;nbsp; We fix this issue starting from oneMKL 2025.2 release.&amp;nbsp; can you please check with new MKL releases:&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://www.intel.com/content/www/us/en/developer/tools/oneapi/onemkl-download.html" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.intel.com/content/www/us/en/developer/tools/oneapi/onemkl-download.html&amp;nbsp;&amp;nbsp;&lt;/A&gt;&lt;SPAN&gt;Thanks for your report of this problem.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;thanks,&lt;BR /&gt;Chao&lt;/P&gt;</description>
      <pubDate>Fri, 06 Feb 2026 04:51:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1736084#M37522</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2026-02-06T04:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1745521#M37553</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm also interested in the same topic: The provided example "pardiso_schur.c", but with the factorization of the Schur matrix to solve a reduced system (plus optionally the sparse Schur matrix itself via "pardiso_export", but I think the factorization is good enough). In my case, the Schur matrix will be big so it has to be sparse.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can somebody please provide such an (full) example? I couldn't download "&lt;SPAN class=""&gt;0001_pardiso_schur.pardiso_export.txt&lt;/SPAN&gt;".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rainer&lt;/P&gt;</description>
      <pubDate>Thu, 23 Apr 2026 15:24:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1745521#M37553</guid>
      <dc:creator>rbunger</dc:creator>
      <dc:date>2026-04-23T15:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746524#M37558</link>
      <description>&lt;P&gt;Hi Rainer,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The file,&amp;nbsp;&lt;SPAN&gt;0001_pardiso_schur.pardiso_export.txt, is attached. Please give it a try.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Fengrui&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 02 May 2026 00:04:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746524#M37558</guid>
      <dc:creator>Fengrui</dc:creator>
      <dc:date>2026-05-02T00:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746654#M37560</link>
      <description>&lt;P&gt;Hi Fengrui,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have used the fie attached to your message to patch the original "pardiso_schur.c" and it works, so I can build and run it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rainer&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 08:27:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746654#M37560</guid>
      <dc:creator>rbunger</dc:creator>
      <dc:date>2026-05-04T08:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746657#M37561</link>
      <description>&lt;P&gt;Hmm, yes it compiles but the code is not correct:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;the Schur matrix is printed like a dense Schur matrix (but it should be sparse)&lt;/LI&gt;&lt;LI&gt;there is only a 331 phase, but no 332 phase&lt;/LI&gt;&lt;LI&gt;the iparm array is possibly not correctly indexed (Fortran indexing instead of C indexing?)&lt;/LI&gt;&lt;LI&gt;in ILP64 mode the code crashes, possibly also due to the wrong (dense) printing loop&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 10:09:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746657#M37561</guid>
      <dc:creator>rbunger</dc:creator>
      <dc:date>2026-05-04T10:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746658#M37562</link>
      <description>&lt;P&gt;... a 331 phase, but no 332 and 333 phase&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 10:12:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746658#M37562</guid>
      <dc:creator>rbunger</dc:creator>
      <dc:date>2026-05-04T10:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746678#M37563</link>
      <description>&lt;P&gt;I think I have fixed the example somehow. But I honestly don't really know what I have done. I had another Fortran example and I have merged it into the above attached code. The results are correct (LP64). Remaining problem: It crashes for ILP64...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 13:10:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746678#M37563</guid>
      <dc:creator>rbunger</dc:creator>
      <dc:date>2026-05-04T13:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746680#M37564</link>
      <description>&lt;P&gt;Yet another problem is that there is no pardiso_export_64() function...&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 13:26:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746680#M37564</guid>
      <dc:creator>rbunger</dc:creator>
      <dc:date>2026-05-04T13:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: pardiso_schur.c with pardiso_export</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746681#M37565</link>
      <description>&lt;P&gt;Now it also works for ILP64, attached...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 13:37:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/pardiso-schur-c-with-pardiso-export/m-p/1746681#M37565</guid>
      <dc:creator>rbunger</dc:creator>
      <dc:date>2026-05-04T13:37:43Z</dc:date>
    </item>
  </channel>
</rss>

