<?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 Hi Murray,  Sergey, in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928449#M13535</link>
    <description>&lt;P&gt;Hi Murray,&amp;nbsp; Sergey,&lt;/P&gt;
&lt;P&gt;I create a zgesvd sample (A is 60x60) &amp;nbsp;in MSVS 2012.&amp;nbsp; I upload it here. Could you please test and let us know the result.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ying&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 21 Jun 2013 07:10:45 GMT</pubDate>
    <dc:creator>Ying_H_Intel</dc:creator>
    <dc:date>2013-06-21T07:10:45Z</dc:date>
    <item>
      <title>Potential Issue with MKL 11 update 4 with SVD functions on 64-bit windows</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928442#M13528</link>
      <description>&lt;P&gt;Recently, upon updating our MKL from version 10 to the latest MKL 11 update 4, we noted performance slowdowns in our application compiled for a 64-bit application using Visual Studio 2012. Upon profiling the application, the location of the slowdowns, seems to stem from the ZBDSQR call in the function below. This slow down does NOT occur when using a 32-bit Release build using Visual Studio 2012. Is this slowdown an existing defect in the MKL 11.0.4 release? Are there plans to address this issue? Thanks in advance for your response. ------------------------------------------------------------------------------------------------------------------------------------------------------- Sample Code Snippet where the problem was detected ------------------------------------------------------------------------------------------------------------------------------------------------------- Note in the test case being profiled MA = NA = 60, complex == MKL_Complex16 void LaSVD(complex *A, complex *U, double *S, complex *VT, int MA, int NA) { char UPLO=(MA&amp;gt;=NA ? 'U':'L'), VECTU='Q', VECTV='P'; int NCC=0, LDA=MA, NRU=MA, LDU=MA, NCVT=NA, LDVT=NA, LDC=1, LWORK=16*(MA+NA), INFO; int NB=(MA&amp;gt;=NA ? NA:MA), SIZEU=MA*NA, SIZEVT=MA*NA, INCX=1, INCY=1, KU=NA, KV=MA; double *RWORK, *D, *E; complex *WORK, *TAUQ, *TAUP, *C=0; int charlen; RWORK=new double[4*NA]; D=new double[MA+NA]; E=new double[MA+NA]; WORK=new complex[LWORK]; TAUQ=new complex[MA+NA]; TAUP=new complex[MA+NA]; //zgebrd_(&amp;amp;MA, &amp;amp;NA, A, &amp;amp;LDA, D, E, TAUQ, TAUP, WORK, &amp;amp;LWORK, &amp;amp;INFO); //Reduces a general matrix to bidiagonal form. GetLAPack64()-&amp;gt;ZGEBRD(&amp;amp;MA, &amp;amp;NA, A, &amp;amp;LDA, D, E, TAUQ, TAUP, WORK, &amp;amp;LWORK, &amp;amp;INFO); //if(INFO!=0) error_handler(NUMERICAL_ERROR, "ZGEBRD"); //f2c_zcopy(&amp;amp;SIZEU, A, &amp;amp;INCX, U, &amp;amp;INCY); GetLAPackBlas()-&amp;gt;ZCOPY(&amp;amp;SIZEU, A, &amp;amp;INCX, U, &amp;amp;INCY); charlen=1; //zungbr_(&amp;amp;VECTU, &amp;amp;MA, &amp;amp;NA, &amp;amp;KU, U, &amp;amp;LDA, TAUQ, WORK, &amp;amp;LWORK, &amp;amp;INFO); //Generates the complex unitary matrix Q or PH determined by ?gebrd. GetLAPack64()-&amp;gt;ZUNGBR(&amp;amp;VECTU, &amp;amp;MA, &amp;amp;NA, &amp;amp;KU, U, &amp;amp;LDA, TAUQ, WORK, &amp;amp;LWORK, &amp;amp;INFO); //if(INFO!=0) error_handler(NUMERICAL_ERROR, "ZUNGBR"); //f2c_zcopy(&amp;amp;SIZEVT, A, &amp;amp;INCX, VT, &amp;amp;INCY); GetLAPackBlas()-&amp;gt;ZCOPY(&amp;amp;SIZEVT, A, &amp;amp;INCX, VT, &amp;amp;INCY); //zungbr_(&amp;amp;VECTV, &amp;amp;NA, &amp;amp;NA, &amp;amp;KV, VT, &amp;amp;LDA, TAUP, WORK, &amp;amp;LWORK, &amp;amp;INFO); //Generates the complex unitary matrix Q or PH determined by ?gebrd. GetLAPack64()-&amp;gt;ZUNGBR(&amp;amp;VECTV, &amp;amp;NA, &amp;amp;NA, &amp;amp;KV, VT, &amp;amp;LDA, TAUP, WORK, &amp;amp;LWORK, &amp;amp;INFO); //if(INFO!=0) error_handler(NUMERICAL_ERROR, "ZUNGBR"); //zbdsqr_(&amp;amp;UPLO, &amp;amp;NB, &amp;amp;NCVT, &amp;amp;NRU, &amp;amp;NCC, D, E, VT, &amp;amp;LDVT, U, &amp;amp;LDU, C, &amp;amp;LDC, RWORK, &amp;amp;INFO); //Computes the singular value decomposition of a general matrix that has been reduced to bidiagonal form. GetLAPack64()-&amp;gt;ZBDSQR(&amp;amp;UPLO, &amp;amp;NB, &amp;amp;NCVT, &amp;amp;NRU, &amp;amp;NCC, D, E, VT, &amp;amp;LDVT, U, &amp;amp;LDU, C, &amp;amp;LDC, RWORK, &amp;amp;INFO); //if(INFO!=0) error_handler(NUMERICAL_ERROR, "ZBDSQR"); charlen=NB; //f2c_dcopy(&amp;amp;charlen, D, &amp;amp;INCX, S, &amp;amp;INCY); GetLAPackBlas()-&amp;gt;DCOPY(&amp;amp;charlen, D, &amp;amp;INCX, S, &amp;amp;INCY); delete[] TAUP; delete[] TAUQ; delete[] WORK; delete[] E; delete[] D; delete[] RWORK; } A similar slow down was detected when using the ZGESVD function. Same usage as described above.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jun 2013 22:42:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928442#M13528</guid>
      <dc:creator>Murray_Shattuck</dc:creator>
      <dc:date>2013-06-18T22:42:22Z</dc:date>
    </item>
    <item>
      <title>Hi Murray,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928443#M13529</link>
      <description>&lt;P&gt;Hi Murray,&lt;/P&gt;
&lt;P&gt;I check the mkl release notes C:\Program Files (x86)\Intel\Composer XE 2013\Documentation\en_US\mkl\Release_Notes.htm&lt;/P&gt;
&lt;P&gt;and mkl bug list &amp;nbsp;&lt;A href="http://software.intel.com/en-us/articles/intel-mkl-110-bug-fixes/"&gt;http://software.intel.com/en-us/articles/intel-mkl-110-bug-fixes/&lt;/A&gt;.&amp;nbsp; seems no direct case.&lt;/P&gt;
&lt;P&gt;Could you please provide some detials information, like&lt;/P&gt;
&lt;P&gt;1. exact performance number of slowdown 10. vs. 11.0 update 4&lt;/P&gt;
&lt;P&gt;2. how do you link mkl,dynamic or static, threaded or sequential.&lt;/P&gt;
&lt;P&gt;3. what is the processor?&lt;/P&gt;
&lt;P&gt;and a workable test case will be helpful.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ying&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2013 03:23:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928443#M13529</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-06-20T03:23:40Z</dc:date>
    </item>
    <item>
      <title>Murray, Did you see how the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928444#M13530</link>
      <description>Murray, Did you see how the source codes of your test case are re-formatted? It is absolutely Not readable.</description>
      <pubDate>Thu, 20 Jun 2013 04:25:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928444#M13530</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-20T04:25:24Z</dc:date>
    </item>
    <item>
      <title>Hi Murray, Please attach a</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928445#M13531</link>
      <description>Hi Murray, Please attach a cpp-file with the source codes. Thanks in advance.

Note: Please don't forget to press &lt;STRONG&gt;Start upload&lt;/STRONG&gt; button before submitting your new post.</description>
      <pubDate>Thu, 20 Jun 2013 14:16:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928445#M13531</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-20T14:16:08Z</dc:date>
    </item>
    <item>
      <title>Quote:Ying H (Intel) wrote:1.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928446#M13532</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Ying H (Intel) wrote:&lt;BR /&gt;1. exact performance number of slowdown 10. vs. 11.0 update 4&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Example for ZGESVD (63% slower)&amp;nbsp;( Will update on other functions at a later date)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MKL 11.0.4&amp;nbsp;&amp;nbsp;&amp;nbsp; ZGESVD&amp;nbsp;&amp;nbsp; Total Time - 15.47 sec,&amp;nbsp; # Calls 8950, Ave Call Time 1.73msec, Min Call Time 0.89msec, Max Call Time 31.73mS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MKL 10 ZGESVD&amp;nbsp;&amp;nbsp; Total Time - 9.47 sec,&amp;nbsp; # Calls 8950, Ave Call Time 1.06msec, Min Call Time 0.77msec, Max Call Time 12.06mS&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Ying H (Intel) wrote:&lt;BR /&gt;2. how do you link mkl,dynamic or static, threaded or sequential.&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; a) We use dynamically Link to MKL&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; b) Our final application is threaded at a higher level than MKL function calls in this instance. Thus these MKL function calls should be using only one thread each. The timing data above was collected using all single threading both in the call application an MKL #1 threads is set to 1.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Ying H (Intel) wrote:&lt;BR /&gt; 3. what is the processor?&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Intel Core i7-3770K CPU @ 3.5GHz,&amp;nbsp; 16GB RAM, Windows 7 Professional, Service Pack 1 64-bit&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Ying H (Intel) wrote:&lt;BR /&gt; and a workable test case will be helpful.&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;I would like to create a dynamically linked console test project for you that reads the input data from a binary file. Unfortunately our application has MKL library locations in strange directly locations and is coupled into many other libraries. If you have an example dynamically linked console project set up in Visual Studio 2012 to test an MKL function, this would expedite the process significantly. I will collect the data for the binary file directly from out composite application. Please advise on this regard.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Murray&lt;/P&gt;
&lt;P&gt;P.S. I will be on vacation for the next ~7 days. I will attempt to have another at my company respond in my absense.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jun 2013 21:15:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928446#M13532</guid>
      <dc:creator>Murray_Shattuck</dc:creator>
      <dc:date>2013-06-20T21:15:00Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;...If you have an example</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928447#M13533</link>
      <description>&amp;gt;&amp;gt;...If you have an example dynamically linked console project set up in Visual Studio 2012 to test an MKL function, this would
&amp;gt;&amp;gt;expedite the process significantly...

Consider a simple console-based and universal test project ( don't assume that everybody has VS 2012 ) because it could be compiled with any version of Intel or Microsoft C++ compilers. For example, my primary VSs are VS 2005 and 2008 and it takes just a couple tens of seconds to compile some small test project from the command line without overheads of VS projects.</description>
      <pubDate>Thu, 20 Jun 2013 23:27:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928447#M13533</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-20T23:27:50Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;...Example for ZGESVD ( 63%</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928448#M13534</link>
      <description>&amp;gt;&amp;gt;...Example for ZGESVD ( 63% slower )...

I could verify it with MKL versions 10 and 11 on at least three platforms if you upload a test case. Also, 63% performance decrease doesn't look good and I have a concern that incorrect CPU dispatching DLLs of MKL were used.

For example, on a Platform A with some CPU ( non AVX-like ) a SSE4 CPU dispatching DLL was used and on a Platform B with some CPU ( AVX-like ) a SSE CPU dispatching DLL was used instead of AVX CPU dispatching DLL.</description>
      <pubDate>Thu, 20 Jun 2013 23:35:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928448#M13534</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-20T23:35:18Z</dc:date>
    </item>
    <item>
      <title>Hi Murray,  Sergey,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928449#M13535</link>
      <description>&lt;P&gt;Hi Murray,&amp;nbsp; Sergey,&lt;/P&gt;
&lt;P&gt;I create a zgesvd sample (A is 60x60) &amp;nbsp;in MSVS 2012.&amp;nbsp; I upload it here. Could you please test and let us know the result.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ying&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jun 2013 07:10:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928449#M13535</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-06-21T07:10:45Z</dc:date>
    </item>
    <item>
      <title>Hi Ying,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928450#M13536</link>
      <description>Hi Ying,

&amp;gt;&amp;gt;...I create a zgesvd sample (A is 60x60)  in MSVS 2012.  I upload it here. Could you please test and let us know the result.

Yes and I'll let you know test results for two MKL versions.</description>
      <pubDate>Fri, 21 Jun 2013 12:40:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928450#M13536</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-06-21T12:40:52Z</dc:date>
    </item>
    <item>
      <title>Hi Murray,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928451#M13537</link>
      <description>&lt;P&gt;Hi Murray,&lt;/P&gt;
&lt;P&gt;A new update release recently. If possible, could you please try it?&lt;/P&gt;
&lt;P&gt;There is a well-known problem regarding SVD. which is fixed in the verson &lt;A href="http://software.intel.com/en-us/forums/topic/401167"&gt;http://software.intel.com/en-us/forums/topic/401167&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;
&lt;P&gt;Ying&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2013 03:30:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928451#M13537</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-07-10T03:30:52Z</dc:date>
    </item>
    <item>
      <title>Hi Ying, </title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928452#M13538</link>
      <description>&lt;P&gt;Hi Ying,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the update and your support. We did notice the latest release with the mention of the SVD in the notes and we are in the process of testing this to see if this resolves the problem.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for a update on our end, we created some temporary code in our custom application to capture a sequence of data that exibits the problem within our custom application (Final.exe). We then created a stand alone test class (K_SVD_Test) that loads this file, performs the SVD operations and logs the time. Next we created a stand alone console program (SVD_Console.exe) that links to the MKL functions using an abstract interface implement using a separate dll ( VLAL_MKL.dll). This way of linking to MKL allows the majority of our developers to avoid building any of MKL/VLAL dependencies, rather we just connect to it via this custom dll. Upon running this console program (SVD_Console.exe)&amp;nbsp;we noted that we could NOT reproduce the slow down we see in our custom application. Thus there was something else going on in our custom application (Final.exe)&amp;nbsp;that was effecting the performance. After about a week of work, we were able to isolate another usage of MKL within our custom application (Final.exe)&amp;nbsp;that appeared to trigger the undesired behavior. This second series of calls to MKL was also using the SVD functions (although a bit differently). &amp;nbsp;A second test class K_SVD_Test2 was created along with the input data saved to file in a file. This test class was then used in the console program (SVD_Console.exe)&amp;nbsp;and we were finally able to repeat the problem.&lt;/P&gt;
&lt;P&gt;Essentially the console program (SVD_Console.exe)&amp;nbsp;runs SVD_Test, then SVD_Test2, and finally SVD_Test again. The timing of SVD_Test before and after running SVD_Test2 show the previously described slow down when using MKL 11.0.04.1. MKL 10.3.10.1 does not have this problem.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As I was unable to obtain permission to post our custom linking to MKL ( VLAL_MKL.dll) on a public forum, I am unable to present (SVD_Console.exe and its associated source code) to you for verification on your end.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Presently, we are attempting to create a second console applicatiion (SVD_Console_Standalone.exe) which links directly with the MKL libraries and thus eliminates the custom method of connecting to MKL (VLAL_MKL.dll) mentioned above. We hope to have this new console program working in the next couple of days and then we can send you example (including all source code and input data files) that you could run on your machines. This last step would also eliminate any possible errors that may be caused by our custom access to the MKL functions &amp;nbsp;via (VLAL_MKL.dll).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In parallel to this effort, we are also attempting to rebuild our custom application using the latest update of MKL (v11.0.5.). Unfortunately this effort is not under my direct control, thus I cannot guarentee an expedient response in this evaluation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Murray&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2013 18:52:06 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928452#M13538</guid>
      <dc:creator>Murray_Shattuck</dc:creator>
      <dc:date>2013-07-10T18:52:06Z</dc:date>
    </item>
    <item>
      <title>Hi Murray,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928453#M13539</link>
      <description>&lt;P&gt;Hi Murray,&lt;/P&gt;
&lt;P&gt;Thank you a lot for the details.&amp;nbsp; You can upload&amp;nbsp;the sample and dll by premier.intel.com,&amp;nbsp; which is another&amp;nbsp;official support channel. and the code and communication&amp;nbsp;is&amp;nbsp;IP protected&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ying&lt;/P&gt;</description>
      <pubDate>Thu, 11 Jul 2013 05:38:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928453#M13539</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-07-11T05:38:31Z</dc:date>
    </item>
    <item>
      <title>Hi, Ying</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928454#M13540</link>
      <description>&lt;P&gt;Hi, Ying&lt;/P&gt;
&lt;P&gt;We created this console test engine by removing all the dependency of our envoriment. It contains two sets of test matrixes (binary) under \mtx directory.&lt;/P&gt;
&lt;P&gt;After compiling the MKLconsole.sln, you will need to copy the mkl dlls to the \x64\release or \x64\debug directory. Mklconsole.exe will run a LaSVD, GESVD, GESDD on newLaSVD_Inputbak dataset, then run GESVD on RSVD_Inputbak dataset, and then re-run LaSVD, GESVD, GESDD on newLaSVD_Inputbak dataset. You will see the ~50% performance slowdown with 11.04 mkl.&lt;/P&gt;
&lt;P&gt;Please let me know if you have any questions/comments.&lt;/P&gt;
&lt;P&gt;Rgds&lt;/P&gt;
&lt;P&gt;Yuan Liu&lt;/P&gt;
&lt;P&gt;ps, the dll needed are&amp;nbsp;&lt;/P&gt;
&lt;P&gt;libimalloc.dll&lt;/P&gt;
&lt;P&gt;libiomp5md.dll&lt;BR /&gt;mkl_avx.dll&lt;BR /&gt;mkl_avx2.dll&lt;BR /&gt;mkl_cdft_core.dll&lt;BR /&gt;mkl_core.dll&lt;BR /&gt;mkl_intel_thread.dll&lt;BR /&gt;mkl_mc.dll&lt;BR /&gt;mkl_mc3.dll&lt;BR /&gt;mkl_p4n.dll&lt;BR /&gt;mkl_vml_avx.dll&lt;BR /&gt;mkl_vml_avx2.dll&lt;BR /&gt;mkl_vml_cmpt.dll&lt;BR /&gt;mkl_vml_mc.dll&lt;BR /&gt;mkl_vml_mc2.dll&lt;BR /&gt;mkl_vml_mc3.dll&lt;BR /&gt;mkl_vml_p4n.dll&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jul 2013 18:02:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928454#M13540</guid>
      <dc:creator>Yuan_L_</dc:creator>
      <dc:date>2013-07-16T18:02:13Z</dc:date>
    </item>
    <item>
      <title>Hi Yuan,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928455#M13541</link>
      <description>&lt;P&gt;Hi Yuan,&lt;/P&gt;
&lt;P&gt;It is nice test case. I can run it now. But not sure what is your exact mkl 10 version. Could you please add MKL version information and let me know the result?&lt;/P&gt;
&lt;P&gt;Another question,&amp;nbsp;you have test two times before_SVR and&amp;nbsp;after_ SVR, what is the purpose?&amp;nbsp;as you have high-level thread,&amp;nbsp;&amp;nbsp;the threaded mkl is not needed. &amp;nbsp;how about if call mkl_sequential_dll.lib directly.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ying&lt;/P&gt;
&lt;P&gt;// This will be called by the main function when testing SVD. &lt;BR /&gt;void Run_SVD_Tests()&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;MKLVersion Version;&lt;BR /&gt;mkl_get_version(&amp;amp;Version);&lt;BR /&gt;printf("Major version: %d\n",Version.MajorVersion);&lt;BR /&gt;printf("Minor version: %d\n",Version.MinorVersion);&lt;BR /&gt;printf("Update version: %d\n",Version.UpdateVersion);&lt;BR /&gt;printf("Product status: %s\n",Version.ProductStatus);&lt;BR /&gt;printf("Build: %s\n",Version.Build);&lt;BR /&gt;printf("Platform: %s\n",Version.Platform);&lt;BR /&gt;printf("Processor optimization: %s\n",Version.Processor);&lt;BR /&gt;printf("================================================================\n");&lt;BR /&gt;printf("\n");&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2013 03:24:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928455#M13541</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-07-17T03:24:56Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;...we are in the process of</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928456#M13542</link>
      <description>&amp;gt;&amp;gt;...we are in the process of testing this to see if this resolves the problem...

Here are test results for your review:

&lt;STRONG&gt;[ Test 1 - Intel Pentium 4 ( 1.60 GHz ) ]&lt;/STRONG&gt;

Command line to build the test case: icl.exe /O3 /Qmkl /MD lapacke_zgesvd_col.cpp

...
LAPACKE_zgesvd (column-major, high-level) Example Program Results
Major version:           &lt;STRONG&gt;10&lt;/STRONG&gt;
Minor version:           &lt;STRONG&gt;3&lt;/STRONG&gt;
Product status:          &lt;STRONG&gt;Product&lt;/STRONG&gt;
Build:                   20120831
Processor optimization:  Intel(R) Pentium(R) 4 processor
================================================================

SVD takes :  &lt;STRONG&gt;21.252930&lt;/STRONG&gt;  seconds
...

&lt;STRONG&gt;[ Test 2 - Intel Core i7-3840QM ( 2.80 GHz ) ]&lt;/STRONG&gt;

Command line to build the test case: The same executable compiled for Test 1 was tested

...
LAPACKE_zgesvd (column-major, high-level) Example Program Results
Major version:           &lt;STRONG&gt;11&lt;/STRONG&gt;
Minor version:           &lt;STRONG&gt;0&lt;/STRONG&gt;
Product status:          &lt;STRONG&gt;Product&lt;/STRONG&gt;
Build:                   20130123
Processor optimization:  Intel(R) Advanced Vector Extensions (Intel(R) AVX) Enabled
 Processor
================================================================

SVD takes :  &lt;STRONG&gt;3.842102&lt;/STRONG&gt;  seconds
...

&lt;STRONG&gt;[ Test 3 - Intel Core i7-3840QM ( 2.80 GHz ) ]&lt;/STRONG&gt;

Command line to build the test case: icl.exe /O3 /Qmkl /MD lapacke_zgesvd_col.cpp

...
LAPACKE_zgesvd (column-major, high-level) Example Program Results
Major version:           &lt;STRONG&gt;11&lt;/STRONG&gt;
Minor version:           &lt;STRONG&gt;0&lt;/STRONG&gt;
Product status:          &lt;STRONG&gt;Product&lt;/STRONG&gt;
Build:                   20130123
Processor optimization:  Intel(R) Advanced Vector Extensions (Intel(R) AVX) Enabled
 Processor
================================================================

SVD takes :  &lt;STRONG&gt;3.519592&lt;/STRONG&gt;  seconds
...

&lt;STRONG&gt;Note:&lt;/STRONG&gt; I don't have MKL version 10 on my Ivy Bridge system.</description>
      <pubDate>Wed, 17 Jul 2013 14:04:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928456#M13542</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-07-17T14:04:24Z</dc:date>
    </item>
    <item>
      <title>&gt;&gt;...Note: I don't have MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928457#M13543</link>
      <description>&amp;gt;&amp;gt;...Note: I don't have MKL version 10 on my Ivy Bridge system.

I just realized that I will be able to test MKL version 10 on the Ivy Bridge system and I'll post results as soon as the test is completed.</description>
      <pubDate>Wed, 17 Jul 2013 14:46:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928457#M13543</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2013-07-17T14:46:27Z</dc:date>
    </item>
    <item>
      <title>Hi Ying,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928458#M13544</link>
      <description>&lt;P&gt;Hi Ying,&lt;/P&gt;
&lt;P&gt;The previous version of MKL that we were using was v10.3.10.1. We then upgraded to v11.0.4.1 and noticed the degradation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We were able to test the latest incremental release &amp;nbsp;v11.0.5.1 and the problem appears to be resolved in this case. One should note that while the problem noted in&amp;nbsp;&lt;A href="http://software.intel.com/en-us/forums/topic/401167"&gt;http://software.intel.com/en-us/forums/topic/401167&lt;/A&gt;&amp;nbsp;was with the same SVD functions, the problem description was much different. In this case the slow down was noticed when using only one thread with MKL, while the case above involves multiple threads.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just our luck that once we were able to produce a repeatable test case for you, that the problem would have been resolved.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to spend a bit more time working with the console program to ensure that you are seeing the same problems that we are seeing on our end. Additional suggestions for the console test app would be welcome.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for you support!&lt;/P&gt;
&lt;P&gt;Murray&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2013 16:08:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928458#M13544</guid>
      <dc:creator>Murray_Shattuck</dc:creator>
      <dc:date>2013-07-17T16:08:16Z</dc:date>
    </item>
    <item>
      <title>Hi, Ying</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928459#M13545</link>
      <description>&lt;P&gt;Hi, Ying&lt;/P&gt;
&lt;P&gt;We intentionally set the thread number to 1 just to remove one uncertainty. In reality, we svd thousands or hundreds of thousands small matrixes and I guess we do need multi-threaded version of mkl. Please correct me if I am wrong.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyway, as you can see from the code, we svd the same test data twice (before and after), the test data are&amp;nbsp;8950 60-by-60 square complex matrixes. Between the two runs, we svd 15 rectangular matrixes of different dimensions (R_SVD).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the result I got, you can see the performance of lasvd and gesvd slows down ~50% in mkl 11.0.4, whereas that of gesdd function is fairly consistent.&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;+++++++++++++++++++++++++++++++++++++++++++++++&lt;/P&gt;
&lt;P&gt;Major version: 11&lt;/P&gt;
&lt;P&gt;Minor version: 0&lt;/P&gt;
&lt;P&gt;Update version: 4&lt;/P&gt;
&lt;P&gt;Product status: Product&lt;/P&gt;
&lt;P&gt;Build: 20130517&lt;/P&gt;
&lt;P&gt;Platform: Intel(R) 64 architecture&lt;/P&gt;
&lt;P&gt;Processor optimization: Intel(R) Core(TM) i7 Processor&lt;/P&gt;
&lt;P&gt;================================================================&lt;/P&gt;
&lt;P&gt;before R_SVD&lt;/P&gt;
&lt;P&gt;lasvd time (ms) =17540&amp;nbsp;&amp;nbsp; max (ms) =3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min (ms) =1&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;count =8950&lt;/P&gt;
&lt;P&gt;gesvd time (ms) =18176&amp;nbsp;&amp;nbsp; max (ms) =5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min (ms) =1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count =8950&lt;/P&gt;
&lt;P&gt;gesdd time (ms) =14749&amp;nbsp;&amp;nbsp; max (ms) =3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min (ms) =1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count =8950&lt;/P&gt;
&lt;P&gt;R_SVD messing up around&amp;nbsp; ~!~!~!&lt;/P&gt;
&lt;P&gt;gesvd time (ms) =0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; max (ms) =0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min (ms) =0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count =15&lt;/P&gt;
&lt;P&gt;After R_SVD&lt;/P&gt;
&lt;P&gt;lasvd time (ms) =23096&amp;nbsp;&amp;nbsp; max (ms) =3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min (ms) =2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count =8950&lt;/P&gt;
&lt;P&gt;gesvd time (ms) =26358&amp;nbsp;&amp;nbsp; max (ms) =7&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min (ms) =2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count =8950&lt;/P&gt;
&lt;P&gt;gesdd time (ms) =15165&amp;nbsp;&amp;nbsp; max (ms) =4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min (ms) =1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count =8950&lt;/P&gt;
&lt;P&gt;+++++++++++++++++++++++++++++++++++&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&lt;/P&gt;
&lt;P&gt;FYI, the result for 11.0.5 is much more consistent.&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;+++++++++++++++++++++++++++++++++++++++++++++++&lt;/P&gt;
&lt;P&gt;Major version: 11&lt;/P&gt;
&lt;P&gt;Minor version: 0&lt;/P&gt;
&lt;P&gt;Update version: 5&lt;/P&gt;
&lt;P&gt;Product status: Product&lt;/P&gt;
&lt;P&gt;Build: 20130612&lt;/P&gt;
&lt;P&gt;Platform: Intel(R) 64 architecture&lt;/P&gt;
&lt;P&gt;Processor optimization: Intel(R) Core(TM) i7 Processor&lt;/P&gt;
&lt;P&gt;================================================================&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;before R_SVD&lt;/P&gt;
&lt;P&gt;lasvd time (ms) =17682&amp;nbsp;&amp;nbsp; max (ms) =4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min (ms) =1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count =8950&lt;/P&gt;
&lt;P&gt;gesvd time (ms) =17866&amp;nbsp;&amp;nbsp; max (ms) =3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min (ms) =1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count =8950&lt;/P&gt;
&lt;P&gt;gesdd time (ms) =15304&amp;nbsp;&amp;nbsp; max (ms) =639 &amp;nbsp;&amp;nbsp;min (ms) =1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count =8950&lt;/P&gt;
&lt;P&gt;R_SVD messing up around&amp;nbsp; ~!~!~!&lt;/P&gt;
&lt;P&gt;gesvd time (ms) =1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; max (ms) =1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min (ms) =0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count =15&lt;/P&gt;
&lt;P&gt;After R_SVD&lt;/P&gt;
&lt;P&gt;lasvd time (ms) =17434&amp;nbsp;&amp;nbsp; max (ms) =4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min (ms) =1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count =8950&lt;/P&gt;
&lt;P&gt;gesvd time (ms) =18072&amp;nbsp;&amp;nbsp; max (ms) =4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min (ms) =1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count =8950&lt;/P&gt;
&lt;P&gt;gesdd time (ms) =14829&amp;nbsp;&amp;nbsp; max (ms) =4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; min (ms) =1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; count =8950&lt;/P&gt;
&lt;P&gt;+++++++++++++++++++++++++++++++++++&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2013 16:39:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928459#M13545</guid>
      <dc:creator>Yuan_L_</dc:creator>
      <dc:date>2013-07-17T16:39:00Z</dc:date>
    </item>
    <item>
      <title>Ying, </title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928460#M13546</link>
      <description>&lt;P&gt;Ying,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Quote from &lt;A href="http://software.intel.com/en-us/user/404581"&gt;Ying H (Intel)&lt;/A&gt;&amp;nbsp;Tue, 07/16/2013 - 20:24&lt;/P&gt;
&lt;P&gt;&amp;nbsp;"Another question,&amp;nbsp;you have test two times before_SVR and&amp;nbsp;after_ SVR, what is the purpose?"&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This was our major problem when reproducing the problem in a console application. In our first attempt we only performed the tests before_SVR. When testing in this manner we did not see the associated slow down between the MKL versions. Yuan had spent quite a bit of time isolating yet another usage of the SVD functions within our final application which caused a subsequent tests after_SVR to become significantly slower when using MKL v11.0.4. &amp;nbsp;This slowdown between the times before and after SVR did not show up when using MKL v10.3.10. It seems quite strange to us that performing the same series of tests within one application run results in such drastic changes in the time required to peform these tests.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We speculate that somehow when running the SVR tests, that the new version of MKL v11.0.4 gets in a bad state, that subequently slows down the second set of tests when compared to the 1st run of these tests.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Murray&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jul 2013 19:00:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928460#M13546</guid>
      <dc:creator>Murray_Shattuck</dc:creator>
      <dc:date>2013-07-17T19:00:02Z</dc:date>
    </item>
    <item>
      <title>Hi Yang, Murray,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928461#M13547</link>
      <description>&lt;P&gt;Hi Yang, Murray,&lt;/P&gt;
&lt;P&gt;Thanks you much for the clarification.&amp;nbsp; The two issue seems related. The one in DPD20033524 is caused by error code in split workload on OpenMP threads .&amp;nbsp; And the one here,&amp;nbsp;same as you speculate, &amp;nbsp;the first run change the second run's OpenMP thread&amp;nbsp;status. I will check with our engineer and get back to you if any news.&lt;/P&gt;
&lt;P&gt;@yuan, not sure exact your usage model, if thousand of matrix are small matrix and&amp;nbsp;set mkl thread num=1,&amp;nbsp;&amp;nbsp;then sequential mkl&amp;nbsp;should more suitable because&amp;nbsp;at lease&amp;nbsp;it save the time of&amp;nbsp;manage openmp&amp;nbsp;threads.&amp;nbsp; Or you may need the threaded version to get performance by set mkl thread num = 2&amp;nbsp;or&amp;nbsp;for other functions.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Ying&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2013 07:23:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Potential-Issue-with-MKL-11-update-4-with-SVD-functions-on-64/m-p/928461#M13547</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2013-07-18T07:23:56Z</dc:date>
    </item>
  </channel>
</rss>

