<?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 Ok, thanks Andreas. I see the in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bug-in-xggsvd-quot-Parameter-5-was-incorrect-on-entry-to-DORMQR/m-p/1015925#M19487</link>
    <description>&lt;P&gt;Ok, thanks Andreas. I see the similar behaviour on my side too. we will check the cause of the problem.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Sep 2015 09:36:02 GMT</pubDate>
    <dc:creator>Gennady_F_Intel</dc:creator>
    <dc:date>2015-09-08T09:36:02Z</dc:date>
    <item>
      <title>Bug in xggsvd? "Parameter 5 was incorrect on entry to DORMQR"</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bug-in-xggsvd-quot-Parameter-5-was-incorrect-on-entry-to-DORMQR/m-p/1015922#M19484</link>
      <description>&lt;P&gt;When running the program in single threaded mode I get the error message "&lt;SPAN class="s1"&gt;Parameter 5 was incorrect on entry to DORMQR&lt;/SPAN&gt;". The message is not present if I either run the program with multiple threads or if I compile it with reference LAPACK. My compiltervar settings are intel64 ilp64 and the program is compiled with&lt;/P&gt;

&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;ifort testgsvd.f90 -lmkl_rt&lt;/SPAN&gt;&lt;/P&gt;

&lt;P class="p1"&gt;testgsvd.f90:&lt;/P&gt;

&lt;P&gt;program testgsvd&lt;/P&gt;

&lt;P&gt;&amp;nbsp; implicit none&lt;BR /&gt;
	&amp;nbsp; integer*8 :: k, l, alpha(10), beta(10), iwork(20), info&lt;BR /&gt;
	&amp;nbsp; double precision :: A(10,20), B(10,20), U, V, Q, work(80)&lt;/P&gt;

&lt;P&gt;&amp;nbsp; open(1, file="a.txt", action = "read")&lt;BR /&gt;
	&amp;nbsp; read(1, *) A&lt;BR /&gt;
	&amp;nbsp; open(2, file="b.txt", action = "read")&lt;BR /&gt;
	&amp;nbsp; read(2, *) B&lt;BR /&gt;
	&amp;nbsp; close(1)&lt;BR /&gt;
	&amp;nbsp; close(2)&lt;/P&gt;

&lt;P&gt;&amp;nbsp; call dggsvd('N', 'N', 'N', 10_8, 20_8, 10_8, k, l, A, 10_8, B, 10_8, alpha, beta, U, 1_8, V, 1_8, Q, 1_8, work, iwork, info)&lt;/P&gt;

&lt;P&gt;end program testgsvd&lt;/P&gt;

&lt;P&gt;The matrices A and B are attached.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2015 12:13:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bug-in-xggsvd-quot-Parameter-5-was-incorrect-on-entry-to-DORMQR/m-p/1015922#M19484</guid>
      <dc:creator>Andreas_Jensen</dc:creator>
      <dc:date>2015-09-07T12:13:59Z</dc:date>
    </item>
    <item>
      <title>by another words, the issue</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bug-in-xggsvd-quot-Parameter-5-was-incorrect-on-entry-to-DORMQR/m-p/1015923#M19485</link>
      <description>&lt;P&gt;by another words, the issue exists when you link with sequential mode of MKL?&lt;/P&gt;

&lt;P&gt;the example contains the ?ggsvd, but the title is about domgr.&lt;/P&gt;

&lt;P&gt;why parameter info is INTEGER* 8?&lt;/P&gt;

&lt;P&gt;when you link with mkl_rt - you use LP64 interface by the default.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2015 15:15:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bug-in-xggsvd-quot-Parameter-5-was-incorrect-on-entry-to-DORMQR/m-p/1015923#M19485</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2015-09-07T15:15:01Z</dc:date>
    </item>
    <item>
      <title>Thanks for the fast reply.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bug-in-xggsvd-quot-Parameter-5-was-incorrect-on-entry-to-DORMQR/m-p/1015924#M19486</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Thanks for the fast reply.&lt;/SPAN&gt;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;by another words, the issue exists when you link with sequential mode of MKL?&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;No. The difference is just between&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;./a.out&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;and&lt;/SPAN&gt;&lt;/P&gt;

&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;OMP_NUM_THREADS=1 ./a.out&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P class="p1"&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;the example contains the ?ggsvd, but the title is about domgr.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P class="p1"&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Yes. The call is to dggsvd, but the error message comes from dormqr. I can see that reference LAPACK doesn't even call that function so thats the reason why I suspect it to be an MKL problem.&lt;/SPAN&gt;&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;why parameter info is INTEGER* 8?&lt;BR /&gt;
		&lt;SPAN style="line-height: 1.5;"&gt;when you link with mkl_rt - you use LP64 interface by the default.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;Before I compile and execute, I run source PATHTOINTEL/&lt;SPAN class="s1"&gt;bin/compilervars.sh intel64 ilp64 and I thought that would cause ilp64 mode when running programs linked with lmkl_rt. Since you asked, I've also tried to set&amp;nbsp;export MKL_INTERFACE_LAYER=ilp64 but I still get the same error.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Sep 2015 16:19:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bug-in-xggsvd-quot-Parameter-5-was-incorrect-on-entry-to-DORMQR/m-p/1015924#M19486</guid>
      <dc:creator>Andreas_Jensen</dc:creator>
      <dc:date>2015-09-07T16:19:00Z</dc:date>
    </item>
    <item>
      <title>Ok, thanks Andreas. I see the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bug-in-xggsvd-quot-Parameter-5-was-incorrect-on-entry-to-DORMQR/m-p/1015925#M19487</link>
      <description>&lt;P&gt;Ok, thanks Andreas. I see the similar behaviour on my side too. we will check the cause of the problem.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Sep 2015 09:36:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Bug-in-xggsvd-quot-Parameter-5-was-incorrect-on-entry-to-DORMQR/m-p/1015925#M19487</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2015-09-08T09:36:02Z</dc:date>
    </item>
  </channel>
</rss>

