<?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 Let me clarify: The matrix A in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/cluster-sparse-solver-Schur-complement-matrix-can-t-get-it-to/m-p/1165949#M28244</link>
    <description>&lt;P&gt;Let me clarify: The matrix A as specified by the input ia, ja, and a above is neither symmetric nor structurally symmetric. However, mtype is set to -2 (real symmetric). This is not a bug in the program, merely a confusing detail.&lt;/P&gt;

&lt;P&gt;Edit: Only the upper right triangle is specified, as that is all that is needed, and the lower triangle is the reflection.&lt;/P&gt;</description>
    <pubDate>Mon, 16 Apr 2018 16:29:00 GMT</pubDate>
    <dc:creator>Laura_S_3</dc:creator>
    <dc:date>2018-04-16T16:29:00Z</dc:date>
    <item>
      <title>cluster_sparse_solver Schur complement matrix - can't get it to work</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/cluster-sparse-solver-Schur-complement-matrix-can-t-get-it-to/m-p/1165945#M28240</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;Has anyone had luck getting the new Schur Complement matrix option (iparm(36)) to work with MKL 2018 release 2? I am not having luck, and can't find any example programs that use this option. If anyone has an example, I'd love to see it. Otherwise I'll post my best attempt at making it work to see if anyone can figure out what is wrong.&lt;/P&gt;

&lt;P&gt;Laura&lt;/P&gt;</description>
      <pubDate>Fri, 06 Apr 2018 15:37:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/cluster-sparse-solver-Schur-complement-matrix-can-t-get-it-to/m-p/1165945#M28240</guid>
      <dc:creator>Laura_S_3</dc:creator>
      <dc:date>2018-04-06T15:37:56Z</dc:date>
    </item>
    <item>
      <title>You may take a look at the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/cluster-sparse-solver-Schur-complement-matrix-can-t-get-it-to/m-p/1165946#M28241</link>
      <description>&lt;P&gt;You may take a look at the mklroot\examples\solverc\source\ pardiso_schur_c.c&amp;nbsp; example&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Apr 2018 17:07:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/cluster-sparse-solver-Schur-complement-matrix-can-t-get-it-to/m-p/1165946#M28241</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2018-04-06T17:07:27Z</dc:date>
    </item>
    <item>
      <title>OK, that helped with the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/cluster-sparse-solver-Schur-complement-matrix-can-t-get-it-to/m-p/1165947#M28242</link>
      <description>&lt;P&gt;OK, that helped with the parameters. Thank you!&lt;/P&gt;

&lt;P&gt;A couple of notes for future readers:&lt;/P&gt;

&lt;P&gt;1) The interface is touchy - some parameters that look innocuous can cause the program not to run. Specifically, initialize the "ignored" parameters maxfct and mnum to 1 and make sure iparm(13) = 0. (At least, that is how the current release is working.)&lt;/P&gt;

&lt;P&gt;2) The&amp;nbsp;&lt;SPAN style="font-size: 12px;"&gt;pardiso_schur_c.c&amp;nbsp; example&amp;nbsp;&lt;/SPAN&gt;included with this release uses an asymmetrical matrix but tells Pardiso it is symmetric. So the reported Schur matrix won't match the Schur matrix computed other ways unless you account for this.&lt;/P&gt;</description>
      <pubDate>Wed, 11 Apr 2018 18:30:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/cluster-sparse-solver-Schur-complement-matrix-can-t-get-it-to/m-p/1165947#M28242</guid>
      <dc:creator>Laura_S_3</dc:creator>
      <dc:date>2018-04-11T18:30:52Z</dc:date>
    </item>
    <item>
      <title>wrt #2: mkl 2018 u2 contains</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/cluster-sparse-solver-Schur-complement-matrix-can-t-get-it-to/m-p/1165948#M28243</link>
      <description>&lt;P&gt;wrt #2: mkl 2018 u2 contains symmetric input:&lt;/P&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; MKL_INT ia[9] = { 1, 5, 8, 10, 12, 15, 17, 18, 19};&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; MKL_INT ja[18] = { 1, 3, 6, 7,&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2, 3, 5,&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3, 8,&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4, 7,&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5, 6, 7,&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 6, 8,&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 7,&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 8&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; };&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; double a[18] = { 7.0, 1.0, 2.0, 7.0,&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -4.0, 8.0, 2.0,&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1.0, 5.0,&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 7.0, 9.0,&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5.0, 1.0, 5.0,&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -1.0, 5.0,&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 11.0,&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5.0&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;DIV&gt;&lt;SPAN style="font-size: 13.008px;"&gt;&amp;nbsp; &amp;nbsp; };&lt;/SPAN&gt;&lt;/DIV&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 15 Apr 2018 05:38:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/cluster-sparse-solver-Schur-complement-matrix-can-t-get-it-to/m-p/1165948#M28243</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2018-04-15T05:38:27Z</dc:date>
    </item>
    <item>
      <title>Let me clarify: The matrix A</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/cluster-sparse-solver-Schur-complement-matrix-can-t-get-it-to/m-p/1165949#M28244</link>
      <description>&lt;P&gt;Let me clarify: The matrix A as specified by the input ia, ja, and a above is neither symmetric nor structurally symmetric. However, mtype is set to -2 (real symmetric). This is not a bug in the program, merely a confusing detail.&lt;/P&gt;

&lt;P&gt;Edit: Only the upper right triangle is specified, as that is all that is needed, and the lower triangle is the reflection.&lt;/P&gt;</description>
      <pubDate>Mon, 16 Apr 2018 16:29:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/cluster-sparse-solver-Schur-complement-matrix-can-t-get-it-to/m-p/1165949#M28244</guid>
      <dc:creator>Laura_S_3</dc:creator>
      <dc:date>2018-04-16T16:29:00Z</dc:date>
    </item>
  </channel>
</rss>

