<?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 Thanks, I updated to 11.2 u2, in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Back-substitution-of-Pardiso-not-executing-in-parallel/m-p/1060821#M21686</link>
    <description>&lt;P&gt;Thanks, I updated to 11.2 u2, and it works a lot better.&lt;/P&gt;</description>
    <pubDate>Thu, 26 Mar 2015 21:36:54 GMT</pubDate>
    <dc:creator>Jens_E_</dc:creator>
    <dc:date>2015-03-26T21:36:54Z</dc:date>
    <item>
      <title>Back-substitution of Pardiso not executing in parallel</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Back-substitution-of-Pardiso-not-executing-in-parallel/m-p/1060817#M21682</link>
      <description>&lt;P&gt;All,&lt;/P&gt;

&lt;P&gt;In an iterative algorithm I'm reusing the factorization of a symmetric indefinite matrix to solve for different right-hand sides. The back-substitution is performed in a loop with a single right-hand side being sent to pardiso at each time.&lt;/P&gt;

&lt;P&gt;I'm using paridiso_64 and mkl 11.1u2.&lt;/P&gt;

&lt;P&gt;I'm using vtune to perform a concurrency analysis of the application.&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;The execution of the pardiso factorization step seems to be running efficiently in parallel, so I think I've linked the right mkl libraries. However the back substiution is not parallel. It seems pardiso spawns three openmp workers in my case, and only one is active for the back substitution stages.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;I searched the forum and found a thread with a similar question, but I did not find an answer there. However it was mentioned that the back substitution is serial in certain situations.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;My iparm is non-default as follows:&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; iparm[0] = 1; //use non-default values&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; iparm[1] = 3; //parallel metis nested disection&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; iparm[26] = 0; //matrix checks&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; iparm[7] = 2;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; iparm[9] = 8;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; iparm[10] = 1; //scaling&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; iparm[12] = 1; //enable matching&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; iparm[20] = 1; //pivoting&lt;/P&gt;

&lt;P&gt;(Otherwise 0. Note the 0 indexing.)&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Any suggestions?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Thanks!&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Jens&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2015 14:33:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Back-substitution-of-Pardiso-not-executing-in-parallel/m-p/1060817#M21682</guid>
      <dc:creator>Jens_E_</dc:creator>
      <dc:date>2015-03-25T14:33:53Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Back-substitution-of-Pardiso-not-executing-in-parallel/m-p/1060818#M21683</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;Your version of MKL is quite old, could you check you testcase on new version of MKL. During last years performance and scaling of MKL Pardiso solving step have significantly improved&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alex&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 25 Mar 2015 18:50:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Back-substitution-of-Pardiso-not-executing-in-parallel/m-p/1060818#M21683</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2015-03-25T18:50:21Z</dc:date>
    </item>
    <item>
      <title>Okay, thanks.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Back-substitution-of-Pardiso-not-executing-in-parallel/m-p/1060819#M21684</link>
      <description>&lt;P&gt;Okay, thanks.&lt;/P&gt;

&lt;P&gt;Just to confirm: is back-substitution supposed to be parallel also when used for only a single right hand side?&lt;/P&gt;

&lt;P&gt;Jens&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2015 09:31:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Back-substitution-of-Pardiso-not-executing-in-parallel/m-p/1060819#M21684</guid>
      <dc:creator>Jens_E_</dc:creator>
      <dc:date>2015-03-26T09:31:16Z</dc:date>
    </item>
    <item>
      <title>Hi Jens,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Back-substitution-of-Pardiso-not-executing-in-parallel/m-p/1060820#M21685</link>
      <description>&lt;P&gt;Hi Jens,&lt;/P&gt;

&lt;P&gt;Sure, solving steps of MKL pardiso parallelized for both one and many rhs.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alex&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2015 09:33:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Back-substitution-of-Pardiso-not-executing-in-parallel/m-p/1060820#M21685</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2015-03-26T09:33:35Z</dc:date>
    </item>
    <item>
      <title>Thanks, I updated to 11.2 u2,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Back-substitution-of-Pardiso-not-executing-in-parallel/m-p/1060821#M21686</link>
      <description>&lt;P&gt;Thanks, I updated to 11.2 u2, and it works a lot better.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2015 21:36:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Back-substitution-of-Pardiso-not-executing-in-parallel/m-p/1060821#M21686</guid>
      <dc:creator>Jens_E_</dc:creator>
      <dc:date>2015-03-26T21:36:54Z</dc:date>
    </item>
  </channel>
</rss>

