<?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 Quote:Chunyu W. wrote:I think in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041935#M20754</link>
    <description>&lt;P&gt;&lt;SPAN style="font-size: 12.8000001907349px; line-height: 14.3999996185303px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Chunyu W. wrote:&lt;BR /&gt;I think the problem might have something to do with the superb parameter.&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12.8000001907349px; line-height: 14.3999996185303px;"&gt;Since you have not yet stated what exactly the problem is, I cannot comment on that. The matrix B is of the same size as S. However, S is diagonal whereas B is upper bi-diagonal. &lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12.8000001907349px; line-height: 14.3999996185303px;"&gt;In your example, S is 1 X 1, so the size of the first upper diagonal is zero. However, C does not allow you to declare an array of size zero, so you could declare "double superb[max(1,min(M,N)-1)]. Alternatively, pass NULL as the last argument to LAPACKE_zgesvd.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Sep 2014 01:25:14 GMT</pubDate>
    <dc:creator>mecej4</dc:creator>
    <dc:date>2014-09-08T01:25:14Z</dc:date>
    <item>
      <title>LAPACKE_zgesvd has a bug</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041930#M20749</link>
      <description>&lt;P&gt;I think&amp;nbsp;LAPACKE_zgesvd has a bug.&lt;/P&gt;

&lt;P&gt;When I use this function to calculate the SVD of a 2*1 matrix [1;3], the result seems to be wrong.&lt;/P&gt;

&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Sep 2014 20:59:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041930#M20749</guid>
      <dc:creator>Chunyu_W_</dc:creator>
      <dc:date>2014-09-06T20:59:03Z</dc:date>
    </item>
    <item>
      <title>Please show us the result,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041931#M20750</link>
      <description>&lt;P&gt;Please show us the result, and tell us why it "seems to be wrong".&lt;/P&gt;

&lt;P&gt;I tried the same 2 X 1 matrix example with MKL 11.1 and 11.2, and the results agreed with those from Matlab.&lt;/P&gt;

&lt;P&gt;Given that your matrix is real, why do you call the complex SVD routine?&lt;/P&gt;</description>
      <pubDate>Sat, 06 Sep 2014 21:41:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041931#M20750</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-09-06T21:41:27Z</dc:date>
    </item>
    <item>
      <title>Thank you for your reply!</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041932#M20751</link>
      <description>&lt;P&gt;Thank you for your reply!&lt;/P&gt;

&lt;P&gt;Do you use&amp;nbsp;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;LAPACKE_zgesvd to calculate?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;So you mean with different data type, we must use&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color: rgb(67, 67, 67); font-family: Tahoma, Arial; font-size: 12px; line-height: 24px; background-color: rgb(242, 242, 242);"&gt;corresponding&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;function.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;I can not call&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;complex SVD routine when I use real matrix.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Oh, I think that's the problem. I always treat the real number as a special case of complex number and I just let the imaginary part to be 0 to call the complex routine.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Sep 2014 14:25:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041932#M20751</guid>
      <dc:creator>Chunyu_W_</dc:creator>
      <dc:date>2014-09-07T14:25:04Z</dc:date>
    </item>
    <item>
      <title>Quote:Chunyu W. wrote:Do you</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041933#M20752</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Chunyu W. wrote:&lt;BR /&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Do you use&amp;nbsp;LAPACKE_zgesvd to calculate?&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Yes. I used a modified version of the file&amp;nbsp;&lt;/SPAN&gt;lapacke_zgesvd_row.c that is distributed in the examples subdirectory of MKL.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;So you mean with different data type, we must use&amp;nbsp;corresponding&amp;nbsp;function.&amp;nbsp;I can not call&amp;nbsp;complex SVD routine when I use real matrix.&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;You should know the properties of the three matrices that the SVD produces. If the original matrix is real, the U, S and V&lt;SUP&gt;T&lt;/SUP&gt;&amp;nbsp;matrices are all real. When the routines to handle this case (sgesvd and dgesvd) are provided, why would you resort to using the more general routine for complex matrices? All the imaginary parts in the results will be zero, and the calculation will be much slower, without any purpose.&lt;/P&gt;</description>
      <pubDate>Sun, 07 Sep 2014 18:29:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041933#M20752</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-09-07T18:29:41Z</dc:date>
    </item>
    <item>
      <title>I still think that complex</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041934#M20753</link>
      <description>&lt;P&gt;I still think that c&lt;SPAN style="color: rgb(96, 96, 96); background-color: rgb(238, 238, 238);"&gt;omplex SVD routine can calculate real matrix and it should be compatible with real matrix.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(96, 96, 96); background-color: rgb(238, 238, 238);"&gt;I use &amp;nbsp;LAPACKE_zgesvd because sometimes I get complex matrix and sometimes I get real matrix, so I call this function overall, you know it is troublesome to judge what matrix I get.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(96, 96, 96); background-color: rgb(238, 238, 238);"&gt;I think the problem might have something to do with the superb parameter.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Below is an explanation about superb from the documentation(https://software.intel.com/sites/products/documentation/hpc/mkl/mklman/)&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; line-height: 20px;"&gt;On exit,&amp;nbsp;&lt;/SPAN&gt;&lt;SAMP class="codeph" style="font-family: 'Courier New', Courier, monospace; color: rgb(51, 51, 51); font-size: 13px; line-height: 20px;"&gt;&lt;SPAN class="parmname" style="font-style: italic;"&gt;superb&lt;/SPAN&gt;(0:min(&lt;VAR&gt;m&lt;/VAR&gt;,&lt;VAR&gt;n&lt;/VAR&gt;)-2)&lt;/SAMP&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; line-height: 20px;"&gt;&amp;nbsp;contains the unconverged superdiagonal elements of an upper bidiagonal matrix&amp;nbsp;&lt;/SPAN&gt;&lt;VAR style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px;"&gt;B&lt;/VAR&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; line-height: 20px;"&gt;&amp;nbsp;whose diagonal is in&amp;nbsp;&lt;/SPAN&gt;&lt;VAR style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px;"&gt;s&lt;/VAR&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; line-height: 20px;"&gt;&amp;nbsp;(not necessarily sorted).&amp;nbsp;&lt;/SPAN&gt;&lt;VAR style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px;"&gt;B&lt;/VAR&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; line-height: 20px;"&gt;&amp;nbsp;satisfies&amp;nbsp;&lt;/SPAN&gt;&lt;SAMP class="codeph" style="font-family: 'Courier New', Courier, monospace; color: rgb(51, 51, 51); font-size: 13px; line-height: 20px;"&gt;&lt;VAR&gt;A&lt;/VAR&gt;&amp;nbsp;=&amp;nbsp;&lt;VAR&gt;u&lt;/VAR&gt;*&lt;VAR&gt;B&lt;/VAR&gt;*&lt;VAR&gt;vt&lt;/VAR&gt;&lt;/SAMP&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; line-height: 20px;"&gt;, so it has the same singular values as&amp;nbsp;&lt;/SPAN&gt;&lt;VAR style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px;"&gt;A&lt;/VAR&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; line-height: 20px;"&gt;, and singular vectors related by&amp;nbsp;&lt;/SPAN&gt;&lt;VAR style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px;"&gt;u&lt;/VAR&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; line-height: 20px;"&gt;&amp;nbsp;and&amp;nbsp;&lt;/SPAN&gt;&lt;VAR style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; font-size: 13px; line-height: 20px;"&gt;vt&lt;/VAR&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; line-height: 20px;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(51, 51, 51); font-family: Verdana, Arial, sans-serif; line-height: 20px;"&gt;So my question is that when min(m,n) = 1, what should be the size of superb? This is just the case when I caculate [1;3].&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Sep 2014 23:19:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041934#M20753</guid>
      <dc:creator>Chunyu_W_</dc:creator>
      <dc:date>2014-09-07T23:19:47Z</dc:date>
    </item>
    <item>
      <title>Quote:Chunyu W. wrote:I think</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041935#M20754</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 12.8000001907349px; line-height: 14.3999996185303px;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Chunyu W. wrote:&lt;BR /&gt;I think the problem might have something to do with the superb parameter.&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12.8000001907349px; line-height: 14.3999996185303px;"&gt;Since you have not yet stated what exactly the problem is, I cannot comment on that. The matrix B is of the same size as S. However, S is diagonal whereas B is upper bi-diagonal. &lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12.8000001907349px; line-height: 14.3999996185303px;"&gt;In your example, S is 1 X 1, so the size of the first upper diagonal is zero. However, C does not allow you to declare an array of size zero, so you could declare "double superb[max(1,min(M,N)-1)]. Alternatively, pass NULL as the last argument to LAPACKE_zgesvd.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2014 01:25:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041935#M20754</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-09-08T01:25:14Z</dc:date>
    </item>
    <item>
      <title>Thank you for your patience!</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041936#M20755</link>
      <description>&lt;P&gt;Thank you for your patience!&lt;/P&gt;

&lt;P&gt;I might paste my code here as well.&lt;/P&gt;

&lt;P&gt;/**********************code*******************************/&lt;/P&gt;

&lt;P&gt;void svd(int m, int n, FemasDComplex * a, FemasDComplex * u, FemasDComplex * vt, double * s, double * superb)&lt;BR /&gt;
	{&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;(void)LAPACKE_zgesvd(LAPACK_ROW_MAJOR, 'A', 'A', m, n,&amp;nbsp;(MKL_Complex16 *)a, m, s, (MKL_Complex16 *)u, m, (MKL_Complex16 *)vt, n, superb);&lt;/P&gt;

&lt;P&gt;}&lt;/P&gt;

&lt;P&gt;int _tmain(int argc, _TCHAR* argv[])&lt;BR /&gt;
	{&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; FemasDComplex a[2], u[4], vt[1];&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;double s[1];&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;a[0].real = 1;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;a[0].imag = 0;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;a[1].real = 3;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;a[1].imag = 0;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; for(int i=0; i&amp;lt;2; i++)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;cout&amp;lt;&amp;lt;a&lt;I&gt;.real&amp;lt;&amp;lt;'+'&amp;lt;&amp;lt;a&lt;I&gt;.imag&amp;lt;&amp;lt;"i\n";&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;cout&amp;lt;&amp;lt;endl;&lt;/I&gt;&lt;/I&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;svd(2, 1, a, u, vt, s, NULL);&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; //print the result&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; cout&amp;lt;&amp;lt;s[0]&amp;lt;&amp;lt;endl;&lt;BR /&gt;
	&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;for(int i=0; i&amp;lt;4; i++)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;cout&amp;lt;&amp;lt;u&lt;I&gt;.real&amp;lt;&amp;lt;'+'&amp;lt;&amp;lt;u&lt;I&gt;.imag&amp;lt;&amp;lt;"i\n";&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;cout&amp;lt;&amp;lt;endl;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;for(int i=0; i&amp;lt;1; i++)&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;cout&amp;lt;&amp;lt;vt&lt;I&gt;.real&amp;lt;&amp;lt;'+'&amp;lt;&amp;lt;vt&lt;I&gt;.imag&amp;lt;&amp;lt;"i\n";&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;cout&amp;lt;&amp;lt;endl;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; while(1);&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; return 0;&lt;/P&gt;

&lt;P&gt;}&lt;/P&gt;

&lt;P&gt;/****************************code*******************************************/&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Capture.PNG"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/7031i66B8E06BA93372AD/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;above is c++ result&lt;/P&gt;

&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="Capture1.PNG"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/7032i04BCD67DFEF14DD3/image-size/large?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="Capture1.PNG" alt="Capture1.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;above is matlab result.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2014 02:40:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041936#M20755</guid>
      <dc:creator>Chunyu_W_</dc:creator>
      <dc:date>2014-09-08T02:40:11Z</dc:date>
    </item>
    <item>
      <title>FemasDComplex is a structure</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041937#M20756</link>
      <description>&lt;P&gt;FemasDComplex is a structure the same as&amp;nbsp;MKL_Complex16.&lt;/P&gt;

&lt;P&gt;typedef struct FemasDComplex {&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;double real;&lt;BR /&gt;
	&amp;nbsp;&amp;nbsp; &amp;nbsp;double imag;&lt;BR /&gt;
	} FemasDComplex;&lt;/P&gt;

&lt;P&gt;I test some other matrix, they give the same result as matlab, just this one show a different result. [1 ; 3]&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2014 02:45:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041937#M20756</guid>
      <dc:creator>Chunyu_W_</dc:creator>
      <dc:date>2014-09-08T02:45:00Z</dc:date>
    </item>
    <item>
      <title>Since you are using the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041938#M20757</link>
      <description>&lt;P&gt;Since you are using the LAPACK_ROW_MAJOR convention, the value passed for ldA should be n, not m. Many C users make this mistake and I think that the imprecise description in the MKL documentation contributes by using the term "leading dimension" in an inappropriate way.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2014 08:36:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041938#M20757</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2014-09-08T08:36:44Z</dc:date>
    </item>
    <item>
      <title>Thank you. That's exactly the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041939#M20758</link>
      <description>&lt;P&gt;Thank you. That's exactly the reason.&lt;/P&gt;

&lt;P&gt;I also notice that svd is not unique actually, so it is sometimes possible that the result may not be the same as matlab.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2014 23:17:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/LAPACKE-zgesvd-has-a-bug/m-p/1041939#M20758</guid>
      <dc:creator>Chunyu_W_</dc:creator>
      <dc:date>2014-09-08T23:17:04Z</dc:date>
    </item>
  </channel>
</rss>

