<?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 FYI Premier support ticket  in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123667#M25119</link>
    <description>&lt;P&gt;FYI Premier support ticket &lt;STRONG&gt;#&lt;/STRONG&gt;6000164385&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 04 Jan 2017 00:05:05 GMT</pubDate>
    <dc:creator>AndrewC</dc:creator>
    <dc:date>2017-01-04T00:05:05Z</dc:date>
    <item>
      <title>MKL DSS results change in 17.0.1</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123652#M25104</link>
      <description>&lt;P&gt;I have upgraded from Intel Parallel Studio 15.0 to 17.0 Update 1 and am noticing that MKL DSS (aka PARDISO) is giving somewhat different results when solving large real, symmetric sparse matrices. Is this a known issue? I am seeing the differences on both Windows and Linux. &lt;SPAN style="font-size: 1em;"&gt;For example, has the reordering strategy changed or&amp;nbsp;&lt;/SPAN&gt;something&lt;SPAN style="font-size: 1em;"&gt;&amp;nbsp;like that?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Dec 2016 15:19:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123652#M25104</guid>
      <dc:creator>AndrewC</dc:creator>
      <dc:date>2016-12-29T15:19:36Z</dc:date>
    </item>
    <item>
      <title>Andrew, strategy is the same.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123653#M25105</link>
      <description>&lt;P&gt;Andrew, strategy is the same. what do you mean by "different results"? &amp;nbsp;how big this difference is? is that on the same system with the same environment?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Dec 2016 03:20:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123653#M25105</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2016-12-30T03:20:05Z</dc:date>
    </item>
    <item>
      <title>On the identical matrix I get</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123654#M25106</link>
      <description>&lt;P&gt;On the identical matrix I get different answers for the number of eigenvalues returned by dss_statistics. Same system, same matrix, but different MKL versions. &amp;nbsp;I also get &lt;EM&gt;some&lt;/EM&gt; different eigenvalues - maybe by 1%-5%. Enough to fail our many of our QA tests, I can see that I am going to have to put together a reproducer. It will take a few days as it has to include matrix I/O.&lt;/P&gt;

&lt;P&gt;FYI, this code has produced identical results for all "recent" MKL versions (that included a working DSS), until MKL that is part of Composer XE 2017.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;	int error = dss_factor_real( dss_handle, type, KMinusSigmaM-&amp;gt;x );
	if ( error == MKL_DSS_SUCCESS ){
		_CHARACTER_t statIn[] = "Inertia,FactorTime,ReorderTime,Flops";
		_DOUBLE_PRECISION_t statOut[10];
		error = dss_statistics(dss_handle, opt, statIn, statOut);
		if ( error == MKL_DSS_SUCCESS ){
			int nevpos=statOut[0];
			int nevneg=statOut[1];
			int nzero=statOut[2];
&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Dec 2016 06:32:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123654#M25106</guid>
      <dc:creator>AndrewC</dc:creator>
      <dc:date>2016-12-30T06:32:00Z</dc:date>
    </item>
    <item>
      <title>Depending on the properties</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123655#M25107</link>
      <description>&lt;P&gt;Depending on the properties of the matrix, it may not be meaningful to ask for and report its inertia. The documentation at&amp;nbsp;https://software.intel.com/en-us/node/470322 says:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;P&gt;Computing inertia can lead to incorrect results for matrices with a cluster of eigenvalues which are near 0.&lt;/P&gt;

	&lt;P&gt;Inertia of a k-by-k real symmetric positive definite matrix is always (k, 0, 0). Therefore Inertia is returned only in cases of real symmetric indefinite matrices. For all other matrix types, an error message is returned.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;I tried the DSS solver on several symmetric matrices from the Matrix Market, namely, BCSSTK01, BCSSTK02, BCSSTK13 and BCSSTK14. The solutions agreed with the expected solutions to ten significant digits, whether I used MKL 10.2.7, 11.3.4 or 2017.0.1.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Dec 2016 15:26:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123655#M25107</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2016-12-30T15:26:00Z</dc:date>
    </item>
    <item>
      <title>I can output the matrix in MM</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123656#M25108</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;I can output the matrix in MM format, do any of the MKL DSS examples come with MM I/O - or can you share your test code that reads MM and runs the MKL DSS.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Dec 2016 17:04:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123656#M25108</guid>
      <dc:creator>AndrewC</dc:creator>
      <dc:date>2016-12-30T17:04:31Z</dc:date>
    </item>
    <item>
      <title>I used the Harwell-Boeing</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123657#M25109</link>
      <description>&lt;P&gt;I used the Harwell-Boeing format files from the Matrix Market. The program is in Fortran, and sets the r.h.s. vector so as to generate the solution x = 1 + (i-1.0)/(n-1.0), i=1,..,n. It ignores any r.h.s. data in the input file.&lt;/P&gt;

&lt;P&gt;If that seems useful to you, I can provide it.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Dec 2016 17:22:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123657#M25109</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2016-12-30T17:22:18Z</dc:date>
    </item>
    <item>
      <title>It turns out we are both</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123658#M25110</link>
      <description>&lt;P&gt;It turns out we are both right....&lt;/P&gt;

&lt;P&gt;I create a test program and was able to confirm that , in fact, the latest MKL DSS produced the same results as before.... EXCEPT when the calling sequence is as per my snippet below where I call dss_factor_real twice after changing the "values" of the matrix, not the structure.&lt;/P&gt;

&lt;P&gt;This used to work perfectly fine with prior versions of MKL. WIth MKL 2017.1, the second dss_factor_real gives different results than prior versions.&lt;/P&gt;

&lt;P&gt;If I delete the complete dss_ data structures, and start again for the second dss_factor_real then results agree across MKL versions.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;		dss_create(dss_handle, MKL_DSS_MSG_LVL_WARNING + MKL_DSS_ZERO_BASED_INDEXING);
		dss_define_structure(dss_handle,  MKL_DSS_SYMMETRIC, m3-&amp;gt;p, m3-&amp;gt;m, m3-&amp;gt;n, m3-&amp;gt;i, m3-&amp;gt;nzmax);
		dss_reorder(dss_handle, MKL_DSS_AUTO_ORDER, 0);
		dss_factor_real(dss_handle, MKL_DSS_INDEFINITE, m3-&amp;gt;x);
			
			// modify the  m3-&amp;gt;x values ( NOT STRUCTURE!)  of matrix and call dss_factor_real again.
			
		dss_factor_real(dss_handle, MKL_DSS_INDEFINITE, m3-&amp;gt;x);&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2017 22:38:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123658#M25110</guid>
      <dc:creator>AndrewC</dc:creator>
      <dc:date>2017-01-02T22:38:18Z</dc:date>
    </item>
    <item>
      <title>For example, these are the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123659#M25111</link>
      <description>&lt;P&gt;For example, these are the results I am getting for a typical problem making repeated calls to dss_factor_real after only changing the 'values' vector , not the structure of the matrix. To get the correct values I have to call dss_delete and dss_create again.&lt;/P&gt;

&lt;P&gt;nevpos:79&lt;BR /&gt;
	nevneg:0&lt;BR /&gt;
	nzero:0&lt;BR /&gt;
	factor of second matrix ( these values are wrong!)&lt;BR /&gt;
	nevpos:65&lt;BR /&gt;
	nevneg:14&lt;BR /&gt;
	nzero:0&lt;BR /&gt;
	factor of second matrix, again! after full initialization( these values are correct!)&lt;BR /&gt;
	nevpos:73&lt;BR /&gt;
	nevneg:6&lt;BR /&gt;
	nzero:0&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jan 2017 23:25:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123659#M25111</guid>
      <dc:creator>AndrewC</dc:creator>
      <dc:date>2017-01-02T23:25:44Z</dc:date>
    </item>
    <item>
      <title>Quote:vasci_ wrote: For</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123660#M25112</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;vasci_ wrote:&lt;BR /&gt;&amp;nbsp;&lt;SPAN style="font-size: 1em;"&gt;For example, these are the results I am getting for a typical problem making repeated calls to dss_factor_real after only changing the 'values' vector , not the structure of the matrix. To get the correct values I have to call dss_delete and dss_create again.&lt;/SPAN&gt;&lt;SPAN style="font-size: 1em;"&gt;&lt;/SPAN&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;If that happens, it does not happen always, so you need to provide details (preferably complete example code) to reproduce the problem.&lt;/P&gt;

&lt;P&gt;Apart from the issues of reproducing the problem, there is one question that occurs to me: what useful end does it serve to factorize a matrix and, before using the computed factors, alter some of the entries and redo the factorization? All but the last factorization are nearly useless and wasted, unless the estimate of the inertia is, in itself, a desired result. I do not know the internal details of Pardiso/DSS, but I do not think that any actual eigenvalue computations are carried out (doing so would be quite costly) -- the inertia estimate and determinant are computed as by-products of the factorization.&amp;nbsp;&lt;SPAN style="font-size: 16.26px;"&gt;Changing some matrix entries can change the eigenvalues, so why are you surprised when, for your matrix, the inertia changed? Unless you did an independent calculation of the eigenvalues or the inertia, how do you claim that the results reported by DSS are wrong?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;I took the example code pardiso_sym_c.c that is provided (in zipped form, in examples_core_c.zip) and modified it as follows:&lt;/P&gt;

&lt;PRE class="brush:cpp;"&gt;/* -------------------------------------------------------------------- */
/* .. Numerical factorization. */
/* -------------------------------------------------------------------- */
    phase = 22;
    a[0]=a[0]+10.0; a[17]=a[17]+5.0;
    for(int irep=0; irep &amp;lt;5; irep++){
       a[0]-=2.0; a[17]-=1.0;
       PARDISO (pt, &amp;amp;maxfct, &amp;amp;mnum, &amp;amp;mtype, &amp;amp;phase,
             &amp;amp;n, a, ia, ja, &amp;amp;idum, &amp;amp;nrhs, iparm, &amp;amp;msglvl, 
             &amp;amp;ddum, &amp;amp;ddum, &amp;amp;error);
       if ( error != 0 ){
          ...
          }
       printf ("\nFactorization completed ... Inertia = %d %d",iparm[21],iparm[22]);
    }
&lt;/PRE&gt;

&lt;P&gt;The modified example ran and printed the following pertinent line five times:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;Factorization completed ... Inertia = 5 3&lt;/PRE&gt;

&lt;P&gt;This is a case that fits your description.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2017 12:01:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123660#M25112</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2017-01-03T12:01:00Z</dc:date>
    </item>
    <item>
      <title>I I think you are missing the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123661#M25113</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;I I think you are missing the point of what my test shows.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;​​I initialize DSS and compute the inertia of a matrix&amp;nbsp;
		&lt;UL&gt;
			&lt;LI&gt;The steps are dss_create, dss_define_structure, dss_order, dss_factor, dss_statistics&lt;/LI&gt;
		&lt;/UL&gt;
	&lt;/LI&gt;
	&lt;LI&gt;I change the values (not structure) of the matrix and re-factor, and get the inertia ( the 65,14 values). These values are incorrect
		&lt;UL&gt;
			&lt;LI&gt;The steps are&amp;nbsp;dss_factor, dss_statistics&lt;/LI&gt;
		&lt;/UL&gt;
	&lt;/LI&gt;
	&lt;LI&gt;To show they are incorrect , I re-initialize DSS and get the inertia again ( 73,6). These values are correct.
		&lt;UL&gt;
			&lt;LI&gt;The steps are dss_create, dss_define_structure, dss_order, dss_factor, dss_statistics&lt;/LI&gt;
		&lt;/UL&gt;
	&lt;/LI&gt;
&lt;/UL&gt;

&lt;P&gt;As to "why" I do this? This is a pretty effective way to find out the # of eigenvalues below a certain frequency (sigma) in the classic vibration problem. Often it is critical to find the # of eigenvalues &amp;nbsp;below multiple frequencies without actually computing them. As the matrix structure does not change, there is no need to re-analyze the matrix.&lt;/P&gt;

&lt;P&gt;I have a fully working example, and am going to submit a Premier Support Ticket on this.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;As I said this is a regression failure in MKL. MKL versions part of Composer XE 2015 and lower do not have this issue.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2017 15:20:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123661#M25113</guid>
      <dc:creator>AndrewC</dc:creator>
      <dc:date>2017-01-03T15:20:16Z</dc:date>
    </item>
    <item>
      <title>Sample project attached for</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123662#M25114</link>
      <description>&lt;P&gt;Sample project attached for Visual Studio 2015. I use CSparse to read and manipulate the matrices. I also check the structure of each matrix is identical.&lt;/P&gt;

&lt;P&gt;DSSTest&amp;nbsp;Matijv_1.txt&amp;nbsp;Matijv_2.txt&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2017 16:10:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123662#M25114</guid>
      <dc:creator>AndrewC</dc:creator>
      <dc:date>2017-01-03T16:10:37Z</dc:date>
    </item>
    <item>
      <title>Just FYI, Intel Premier</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123663#M25115</link>
      <description>&lt;P&gt;Just FYI, Intel Premier Support is completely broken. It is impossible to submit an issue.&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2017 16:20:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123663#M25115</guid>
      <dc:creator>AndrewC</dc:creator>
      <dc:date>2017-01-03T16:20:41Z</dc:date>
    </item>
    <item>
      <title>Update: Premier support came</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123664#M25116</link>
      <description>&lt;P&gt;Update: Premier support came back to life, I was able to submit the issue&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2017 16:52:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123664#M25116</guid>
      <dc:creator>AndrewC</dc:creator>
      <dc:date>2017-01-03T16:52:28Z</dc:date>
    </item>
    <item>
      <title>Hi All,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123665#M25117</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;

&lt;P&gt;Can I ask to attach reproducer to check it quickly on my side? It can simplify process of finding issue&lt;/P&gt;

&lt;P&gt;Thanks,&lt;/P&gt;

&lt;P&gt;Alex&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2017 18:22:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123665#M25117</guid>
      <dc:creator>Alexander_K_Intel2</dc:creator>
      <dc:date>2017-01-03T18:22:30Z</dc:date>
    </item>
    <item>
      <title>Reproducer as a Visual Studio</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123666#M25118</link>
      <description>&lt;P&gt;Reproducer as a Visual Studio 2105 project is attached&amp;nbsp; in this thread couple of posts up.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jan 2017 20:13:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123666#M25118</guid>
      <dc:creator>AndrewC</dc:creator>
      <dc:date>2017-01-03T20:13:38Z</dc:date>
    </item>
    <item>
      <title>FYI Premier support ticket</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123667#M25119</link>
      <description>&lt;P&gt;FYI Premier support ticket &lt;STRONG&gt;#&lt;/STRONG&gt;6000164385&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2017 00:05:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123667#M25119</guid>
      <dc:creator>AndrewC</dc:creator>
      <dc:date>2017-01-04T00:05:05Z</dc:date>
    </item>
    <item>
      <title>I see no issues with MKL 2017</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123668#M25120</link>
      <description>&lt;P&gt;I see no issues with MKL 2017 u1 and version 11.3.4 as well. I used your project and only things i did, changed the working directory.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;MKL Version:Intel(R) Math Kernel Library Version 2017.0.1 Product Build 20161005 for Intel(R) 64 architecture applications&lt;BR /&gt;
	nevpos:79&lt;BR /&gt;
	nevneg:0&lt;BR /&gt;
	nzero:0&lt;BR /&gt;
	Calling factor of second matrix&lt;BR /&gt;
	nevpos:73&lt;BR /&gt;
	nevneg:6&lt;BR /&gt;
	nzero:0&lt;BR /&gt;
	Calling factor of second matrix, again! after full initialization&lt;BR /&gt;
	nevpos:73&lt;BR /&gt;
	nevneg:6&lt;BR /&gt;
	nzero:0&lt;BR /&gt;
	Press any key to continue . . .&lt;/P&gt;

&lt;P&gt;MKL Version:Intel(R) Math Kernel Library Version 11.3.4 Product Build 20160823 for Intel(R) 64 architecture applications&lt;BR /&gt;
	nevpos:79&lt;BR /&gt;
	nevneg:0&lt;BR /&gt;
	nzero:0&lt;BR /&gt;
	Calling factor of second matrix&lt;BR /&gt;
	nevpos:73&lt;BR /&gt;
	nevneg:6&lt;BR /&gt;
	nzero:0&lt;BR /&gt;
	Calling factor of second matrix, again! after full initialization&lt;BR /&gt;
	nevpos:73&lt;BR /&gt;
	nevneg:6&lt;BR /&gt;
	nzero:0&lt;BR /&gt;
	Press any key to continue . . .&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2017 04:34:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123668#M25120</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2017-01-04T04:34:48Z</dc:date>
    </item>
    <item>
      <title>Andrew, I also checked the</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123669#M25121</link>
      <description>&lt;P&gt;Andrew, I also checked the problem you reported on different CPU types ( sse2, sse4.2, AVX and AVX2). resutls are the similars:&lt;/P&gt;

&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;DSSTest.exe Matijv_1.txt Matijv_2.txt&lt;BR /&gt;
	Major version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2017&lt;BR /&gt;
	Minor version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;BR /&gt;
	Update version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;BR /&gt;
	Product status: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Product&lt;BR /&gt;
	Build: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 20161005&lt;BR /&gt;
	Platform: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Intel(R) 64 architecture&lt;BR /&gt;
	Processor optimization: &amp;nbsp;Intel(R) Advanced Vector Extensions (Intel(R) &lt;STRONG&gt;AVX&lt;/STRONG&gt;) enabled processors&lt;BR /&gt;
	================================================================&lt;/P&gt;

&lt;P&gt;nevpos:79&lt;BR /&gt;
	nevneg:0&lt;BR /&gt;
	nzero:0&lt;BR /&gt;
	Calling factor of second matrix&lt;BR /&gt;
	nevpos:73&lt;BR /&gt;
	nevneg:6&lt;BR /&gt;
	nzero:0&lt;BR /&gt;
	Calling factor of second matrix, again! after full initialization&lt;BR /&gt;
	nevpos:73&lt;BR /&gt;
	nevneg:6&lt;BR /&gt;
	nzero:0&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	&amp;gt;&amp;gt;&amp;gt;DSSTest.exe Matijv_1.txt Matijv_2.txt&lt;BR /&gt;
	Major version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2017&lt;BR /&gt;
	Minor version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;BR /&gt;
	Update version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;BR /&gt;
	Product status: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Product&lt;BR /&gt;
	Build: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 20161005&lt;BR /&gt;
	Platform: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Intel(R) 64 architecture&lt;BR /&gt;
	Processor optimization: &amp;nbsp;Intel(R) Streaming SIMD Extensions 4.2 (Intel(R) &lt;STRONG&gt;SSE4.2&lt;/STRONG&gt;) enabled processors&lt;BR /&gt;
	================================================================&lt;/P&gt;

&lt;P&gt;nevpos:79&lt;BR /&gt;
	nevneg:0&lt;BR /&gt;
	nzero:0&lt;BR /&gt;
	Calling factor of second matrix&lt;BR /&gt;
	nevpos:73&lt;BR /&gt;
	nevneg:6&lt;BR /&gt;
	nzero:0&lt;BR /&gt;
	Calling factor of second matrix, again! after full initialization&lt;BR /&gt;
	nevpos:73&lt;BR /&gt;
	nevneg:6&lt;BR /&gt;
	nzero:0&lt;/P&gt;

&lt;P&gt;&lt;BR /&gt;
	&amp;gt;&amp;gt;&amp;gt;DSSTest.exe Matijv_1.txt Matijv_2.txt&lt;BR /&gt;
	Major version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2017&lt;BR /&gt;
	Minor version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0&lt;BR /&gt;
	Update version: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;BR /&gt;
	Product status: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Product&lt;BR /&gt;
	Build: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 20161005&lt;BR /&gt;
	Platform: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Intel(R) 64 architecture&lt;BR /&gt;
	Processor optimization: &amp;nbsp;Intel(R) Streaming SIMD Extensions 2 (Intel(R)&lt;STRONG&gt; SSE2)&lt;/STRONG&gt; enabled processors&lt;BR /&gt;
	================================================================&lt;BR /&gt;
	nevpos:79&lt;BR /&gt;
	nevneg:0&lt;BR /&gt;
	nzero:0&lt;BR /&gt;
	Calling factor of second matrix&lt;BR /&gt;
	nevpos:73&lt;BR /&gt;
	nevneg:6&lt;BR /&gt;
	nzero:0&lt;BR /&gt;
	Calling factor of second matrix, again! after full initialization&lt;BR /&gt;
	nevpos:73&lt;BR /&gt;
	nevneg:6&lt;BR /&gt;
	nzero:0&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2017 04:56:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123669#M25121</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2017-01-04T04:56:27Z</dc:date>
    </item>
    <item>
      <title>Vascii_ and Gennady: this is</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123670#M25122</link>
      <description>&lt;P&gt;Vascii_ and Gennady: this is a tricky case! I am able to reproduce Vascii_'s results of #8 on one PC, but not on another, even though I used the same versions of MKL on both machines. I need more time to investigate.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2017 14:47:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123670#M25122</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2017-01-04T14:47:48Z</dc:date>
    </item>
    <item>
      <title>I am glad someone can</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123671#M25123</link>
      <description>&lt;P&gt;I am glad someone can reproduce! Hopefully this one will be an interesting one to track down.&lt;/P&gt;

&lt;P&gt;I see the problem on multiple machines using MKL 2017.0.1&lt;/P&gt;

&lt;P&gt;Machine #1 Windows 7 Intel(R) Xeon(R) CPU E5-1620 v2 @ 3.70GHz, 3701 Mhz, 4 Core(s), 8 Logical Processor(s)&lt;/P&gt;

&lt;P&gt;Machine #2 Centos 6.7 Xeon E31245 @ 3.3Hhz, 8 cores.&lt;/P&gt;

&lt;P&gt;Machine#3 Windows 7 Intel(R) Xeon(R) CPU E5-1650 0 @ 3.20GHz, 3201 Mhz, 6 Core(s), 6 Logical Processor(s)&lt;/P&gt;

&lt;P&gt;Machine#4 Windows 7 Intel(R) Xeon(R) CPU E3-1290 V2 @ 3.70GHz, 3701 Mhz, 4 Core(s), 8 Logical Processor(s)&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jan 2017 16:26:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/MKL-DSS-results-change-in-17-0-1/m-p/1123671#M25123</guid>
      <dc:creator>AndrewC</dc:creator>
      <dc:date>2017-01-04T16:26:00Z</dc:date>
    </item>
  </channel>
</rss>

