<?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:dfgmres does not intialize ipar in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfgmres-init-does-not-intialize-ipar/m-p/1270747#M31115</link>
    <description>&lt;P&gt;This issue has been resolved and we will no longer respond to this thread.&amp;nbsp;If you require additional assistance from Intel, please start a new thread.&amp;nbsp;Any further interaction in this thread will be considered community only.&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Mon, 05 Apr 2021 03:57:56 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2021-04-05T03:57:56Z</dc:date>
    <item>
      <title>dfgmres_init does not intialize ipar</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfgmres-init-does-not-intialize-ipar/m-p/1201536#M29921</link>
      <description>&lt;P&gt;I try to use dfgmres_init, dfgmres, dfgmres_get for the first time and I get an error message after the third iteratition with gmres (rci_request==-12)&lt;/P&gt;
&lt;PRE&gt;Intel MKL RCI FGMRES ERROR:&lt;BR /&gt;Parameter IPAR(19)=0 must be a positive integer.&lt;BR /&gt;Parameter IPAR(19) was probably altered by mistake outside of DFGMRES routine.&lt;BR /&gt;The solution may be wrong.&lt;/PRE&gt;
&lt;P&gt;As a matter of fact IPAR(19) *is* equal to 0 since I initialize ipar to 0s &lt;STRONG&gt;before&lt;/STRONG&gt; the call to dfgmres_init.&lt;/P&gt;
&lt;P&gt;dfgmres_init and dfgmres &lt;STRONG&gt;keep this initialized value&lt;/STRONG&gt;. If I initialize&amp;nbsp;IPAR(19)&amp;nbsp; with another value before calling dfgmres_init this other value is also kept and the error (with my initialized&amp;nbsp; value instead 0) is also thrown.&lt;/P&gt;
&lt;P&gt;I'm quite shure not to have changed IPAR(19).&lt;/P&gt;
&lt;P&gt;I don't understand all ipar's. But IPAR[0-9] seemed to be initialized with resonable values by dfgmres_init.&lt;/P&gt;
&lt;P&gt;C++; Windows 10;&amp;nbsp; 64 Bit; compilers_and_libraries_2020.2.254&lt;/P&gt;
&lt;P&gt;Any advice?&lt;/P&gt;
&lt;P&gt;Best regards, Benedikt&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 08:48:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfgmres-init-does-not-intialize-ipar/m-p/1201536#M29921</guid>
      <dc:creator>Benedikt_R_</dc:creator>
      <dc:date>2020-08-19T08:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: dfgmres_init does not intialize ipar</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfgmres-init-does-not-intialize-ipar/m-p/1201701#M29923</link>
      <description>&lt;P&gt;This problem was solved by calling "dfgmres_check" after "dfgmres_init".&lt;/P&gt;
&lt;P&gt;dfgmres_check does not only perform "checks" - it also kind of finishes initialization. (?)&lt;/P&gt;
&lt;P&gt;My understanding for now: Usage of "dfgmres_check" should be marked as mandatory.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 15:14:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfgmres-init-does-not-intialize-ipar/m-p/1201701#M29923</guid>
      <dc:creator>Benedikt_R_</dc:creator>
      <dc:date>2020-08-19T15:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: dfgmres_init does not intialize ipar</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfgmres-init-does-not-intialize-ipar/m-p/1206507#M30002</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Sorry for the late reply. Yes, you're right. The name "check" is misleading, we need to improve our documentation, in particular the description of what the routine does.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the docs for ipar parameter we see that a lot of vlaues should be set to some specific values (not just initialized by zero) and typically a call to "check" routine is required to fill in all required values from some minimal set provided by the customer in "init".&lt;/P&gt;
&lt;P&gt;Theoreically, a user might fill all the values and avoid the call to the check routine but it is not a user-friendly task.&lt;/P&gt;
&lt;P&gt;Thanks for the feedback!&lt;/P&gt;
&lt;P&gt;Best,&lt;BR /&gt;Kirill&lt;/P&gt;</description>
      <pubDate>Thu, 03 Sep 2020 18:18:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfgmres-init-does-not-intialize-ipar/m-p/1206507#M30002</guid>
      <dc:creator>Kirill_V_Intel</dc:creator>
      <dc:date>2020-09-03T18:18:18Z</dc:date>
    </item>
    <item>
      <title>Re:dfgmres does not intialize ipar</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfgmres-init-does-not-intialize-ipar/m-p/1238659#M30535</link>
      <description>&lt;P&gt;The description of this routine has been updated and available for review. Please check the oneMKL Reference manual follow the link: &lt;A href="https://software.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top.html" target="_blank"&gt;https://software.intel.com/content/www/us/en/develop/documentation/onemkl-developer-reference-c/top.html&lt;/A&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Dec 2020 09:06:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfgmres-init-does-not-intialize-ipar/m-p/1238659#M30535</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-12-18T09:06:58Z</dc:date>
    </item>
    <item>
      <title>Re:dfgmres does not intialize ipar</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfgmres-init-does-not-intialize-ipar/m-p/1270747#M31115</link>
      <description>&lt;P&gt;This issue has been resolved and we will no longer respond to this thread.&amp;nbsp;If you require additional assistance from Intel, please start a new thread.&amp;nbsp;Any further interaction in this thread will be considered community only.&amp;nbsp;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 05 Apr 2021 03:57:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/dfgmres-init-does-not-intialize-ipar/m-p/1270747#M31115</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2021-04-05T03:57:56Z</dc:date>
    </item>
  </channel>
</rss>

