<?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:ROUSSEAU, Thomas wrote: in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149719#M27010</link>
    <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;ROUSSEAU, Thomas wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any improvment on this front ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm having the exact same error, on a different usecase.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a Wave object (glorified wrapper to load a wav file into a vector&amp;lt;float&amp;gt;), and this function, whose goal is to find the best matching position between my object and a given sample.&amp;nbsp;&lt;/P&gt;
&lt;PRE class="brush:cpp; class-name:dark;"&gt;int Wave::find_best(vector&amp;lt;float&amp;gt; sample) {
    vector&amp;lt;complex&amp;lt;float&amp;gt;&amp;gt; output(data.size());
    sample.resize(data.size(), 0);

    DFTI_DESCRIPTOR_HANDLE fft = NULL;
    MKL_LONG status;
    status = DftiCreateDescriptor(&amp;amp;fft, DFTI_SINGLE, DFTI_COMPLEX, 1, data.size());
    cout &amp;lt;&amp;lt; "1: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl;
    status = DftiSetValue(fft, DFTI_PLACEMENT, DFTI_NOT_INPLACE);
    cout &amp;lt;&amp;lt; "2: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl; 
    status = DftiCommitDescriptor(fft);
    cout &amp;lt;&amp;lt; "3: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl; 
    status = DftiComputeForward(fft, sample.data(), output.data());
    cout &amp;lt;&amp;lt; "4: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl; 
    status = DftiFreeDescriptor(&amp;amp;fft);
    cout &amp;lt;&amp;lt; "5: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl;&lt;/PRE&gt;

&lt;P&gt;I get a runtime error at the "DftiComputeForward" line.&lt;/P&gt;
&lt;P&gt;Unhandled exception at 0x00007FFE47DF1756 (mkl_avx2.dll) in MyProgram.exe: 0xC0000005: Access violation reading location 0x0000027327E56000.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If any of you fine gentlemen have any idea, I'll gladly investigate.&lt;/P&gt;
&lt;P&gt;Thank you in advance !&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, I have no bullet proof solution but concerning my problem I&amp;nbsp;discovered that&lt;STRONG&gt; I had a bug using Intel's MKL library&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;in a completely different place&amp;nbsp;from where the crashes happened&lt;/STRONG&gt; ( it even was not in the same translation unit but it was in the same project/solution): the bug was that I used MKL&amp;nbsp;&lt;EM&gt;cblas_dgemm&lt;/EM&gt;(...) in-place -&amp;nbsp;the same buffer used for both input and output since I multiplied NX1 vector with NXN matrix - that&amp;nbsp;is forbidden and after I used a different buffer for the output all the crashes from mkl_avx2.dll disappered and my problem solved.&lt;/P&gt;
&lt;P&gt;So my advice to you is that if you are sure that the code fragment above is correct check other usages of MKL functions in your code and make sure they are correct.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 12 Apr 2020 10:37:00 GMT</pubDate>
    <dc:creator>kup__benny</dc:creator>
    <dc:date>2020-04-12T10:37:00Z</dc:date>
    <item>
      <title>Rare crashes on MKL</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149712#M27003</link>
      <description>&lt;P&gt;I have implemented in C++&amp;nbsp;an algorithm in image processing using (among other things)&amp;nbsp;&amp;nbsp;fftw wrappers in MKL library (version 2018.3.210)&lt;/P&gt;&lt;P&gt;I am working&amp;nbsp;on a x64&amp;nbsp;machine&amp;nbsp;with Intel Xeon E5-1650 v3 3.5 GHz processor and Windows7 as OS.&lt;/P&gt;&lt;P&gt;Have used MS visual studio 2015 as my IDE for development and debugging, the application is multi-threaded via C++11&lt;/P&gt;
&lt;PRE class="brush:cpp; class-name:dark;"&gt;&amp;lt;thread&amp;gt;&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;library.&lt;/P&gt;
&lt;P&gt;When running the application over and over again I see that in about 1% of the runs it crashes.&lt;/P&gt;
&lt;P&gt;When I have attached it to my IDE and looked at the crash dumps I saw that the crashes are &lt;STRONG&gt;always&lt;/STRONG&gt; on the call:&lt;/P&gt;

&lt;PRE class="brush:cpp; class-name:dark;"&gt;thePlan = fftw_plan_many_dft(.....);&lt;/PRE&gt;

&lt;P&gt;with the exception "Unhandled exception at &lt;EM&gt;someaddress &lt;/EM&gt;(mkl_avx2.dll) in MyApp.exe:&amp;nbsp;0xC00000005&amp;nbsp;access violation reading location &lt;STRONG&gt;0x0000000000000&lt;/STRONG&gt;"&lt;/P&gt;
&lt;P&gt;or&lt;/P&gt;
&lt;P&gt;the exception "Unhandled exception at someaddress (mkl_avx2.dll) in MyApp.exe 0xC00000005 access violation reading location &lt;STRONG&gt;0x0000000000018&lt;/STRONG&gt;"&lt;/P&gt;
&lt;P&gt;1. I have checked that all inputs to the call &lt;STRONG&gt;are valid&lt;/STRONG&gt; (pointers were allocated with fftw_malloc())&amp;nbsp;,other inputs&amp;nbsp;have legitimate &amp;nbsp;sizes and types.&lt;/P&gt;
&lt;P&gt;2. Have run the application with Windows &lt;A href="http://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/application-verifier"&gt;ApplicationVerifier &lt;/A&gt;attached to my IDE and got no warnings or errors.&lt;/P&gt;
&lt;P&gt;3. Have run the application with Windows&amp;nbsp;&lt;A href="http://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/gflags"&gt;global flags&amp;nbsp;&lt;/A&gt;attached to my IDE&amp;nbsp;with all&amp;nbsp;possible &amp;nbsp;heap corruption checks and got no exceptions.&lt;/P&gt;
&lt;P&gt;What else can I do to debug these crashes?&lt;/P&gt;</description>
      <pubDate>Sun, 10 Feb 2019 06:52:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149712#M27003</guid>
      <dc:creator>kup__benny</dc:creator>
      <dc:date>2019-02-10T06:52:29Z</dc:date>
    </item>
    <item>
      <title>The part that you left out --</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149713#M27004</link>
      <description>&lt;P&gt;The part that you left out -- the "someaddress" in the MKL DLL -- is crucial. Please provide a full traceback, the values of the arguments to the MKL routines, and/or a reproducer if possible.&lt;/P&gt;&lt;P&gt;I suspect that an array element is being used, with an index of 1 or 7, but the pointer to the base of the array is zero.&lt;/P&gt;</description>
      <pubDate>Sun, 10 Feb 2019 17:28:02 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149713#M27004</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2019-02-10T17:28:02Z</dc:date>
    </item>
    <item>
      <title>Quote:mecej4 wrote:</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149714#M27005</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;mecej4 wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The part that you left out -- the "someaddress" in the MKL DLL -- is crucial. Please provide a full traceback, the values of the arguments to the MKL routines, and/or a reproducer if possible.&lt;/P&gt;&lt;P&gt;I suspect that an array element is being used, with an index of 1 or 7, but the pointer to the base of the array is zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example for typical crashes are:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example #1&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Unhandled exception at 0x000007EF4C03069F (mkl_avx2.dll) in MyApp.exe 0xC0000005 Access violation reading location 0x0000000000000018&lt;/P&gt;&lt;P&gt;the call:&lt;/P&gt;
&lt;PRE class="brush:cpp; class-name:dark;"&gt;thePlan = fftw_plan_many_dft(2,TrDims,SameSizeFFTLength,xyw,TrDims,1,nEl,XY,TrDims,1,nEl,FFTW_FORWARD,FFTW_ESTIMATE);&lt;/PRE&gt;

&lt;P&gt;where:&lt;/P&gt;

&lt;PRE class="brush:cpp; class-name:dark;"&gt;nEl = 8190;


TrDims[0] = 65;TrDims[1] = 126;//note that TrDims[0] * TrDims[1] = nEl !!!


SameSizeFFTLength = 2;

TrSize = nEl * sizeof(fftw_complex);

xyw  = (fftw_complex *)fftw_malloc(TrSize * SameSizeFFTLength);// initialize with relevant 
//values with a for loop

XY  = (fftw_complex *)fftw_malloc(TrSize * SameSizeFFTLength);
&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Example #2&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Unhandled exception at 0x000007FE4C7E069F (mkl_avx2.dll) in MyApp.exe 0xC0000005 Access violation reading location 0x0000000000000018&lt;/P&gt;
&lt;P&gt;the call:&lt;/P&gt;

&lt;PRE class="brush:cpp; class-name:dark;"&gt;thePlan = fftw_plan_many_dft(2,TrDims,SameSizeFFTLength,xyw,TrDims,1,nEl,XY,TrDims,1,nEl,FFTW_FORWARD,FFTW_ESTIMATE);&lt;/PRE&gt;

&lt;P&gt;where:&lt;/P&gt;

&lt;PRE class="brush:cpp; class-name:dark;"&gt;nEl = 8190;


TrDims[0] = 65;TrDims[1] = 126;//note that TrDims[0] * TrDims[1] = nEl !!!


SameSizeFFTLength = 2;

TrSize = nEl * sizeof(fftw_complex);

xyw  = (fftw_complex *)fftw_malloc(TrSize * SameSizeFFTLength);// initialize with relevant 
//values with a for loop

XY  = (fftw_complex *)fftw_malloc(TrSize * SameSizeFFTLength);
&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Example #3&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Unhandled exception at 0x000007FE429E3387 (mkl_avx2.dll) in MyApp.exe 0xC0000005 Access violation reading location 0x0000000000000000&lt;/P&gt;
&lt;P&gt;the call:&lt;/P&gt;

&lt;PRE class="brush:cpp; class-name:dark;"&gt;thePlan = fftw_plan_many_dft(2,TrDims,SameSizeFFTLength,xyw,TrDims,1,nEl,XY,TRDims,1,nEl,FFTW_FORWARD,FFTW_ESTIMATE);

&lt;/PRE&gt;

&lt;P&gt;where:&lt;/P&gt;

&lt;PRE class="brush:cpp; class-name:dark;"&gt;nEl =576;


TrDims[0] =24;TrDims[1] = 24;note that TrDims[0] * TrDims[1] = nEl !!!

SameSizeFFTLength = 1670;

TrSize = nEl * sizeof(fftw_complex);

xyw  = (fftw_complex *)fftw_malloc(TrSize * SameSizeFFTLength);// initialize with relevant values with a for loop.

XY  = (fftw_complex *)fftw_malloc(TrSize * SameSizeFFTLength);
&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Feb 2019 06:17:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149714#M27005</guid>
      <dc:creator>kup__benny</dc:creator>
      <dc:date>2019-02-11T06:17:00Z</dc:date>
    </item>
    <item>
      <title>Any other references???</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149715#M27006</link>
      <description>&lt;P&gt;Any other references???&lt;/P&gt;</description>
      <pubDate>Mon, 18 Feb 2019 20:48:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149715#M27006</guid>
      <dc:creator>kup__benny</dc:creator>
      <dc:date>2019-02-18T20:48:50Z</dc:date>
    </item>
    <item>
      <title>Is that possible to give us</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149716#M27007</link>
      <description>&lt;P&gt;Is that possible to give us the standalone C or F reproducer which we may compile with the latest versions of library and investigate the cause of the issue without an additional efforts?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Feb 2019 02:43:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149716#M27007</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2019-02-19T02:43:26Z</dc:date>
    </item>
    <item>
      <title>Hi everyone, </title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149717#M27008</link>
      <description>&lt;P&gt;Hi everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any improvment on this front ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm having the exact same error, on a different usecase.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a Wave object (glorified wrapper to load a wav file into a vector&amp;lt;float&amp;gt;), and this function, whose goal is to find the best matching position between my object and a given sample.&amp;nbsp;&lt;/P&gt;
&lt;PRE class="brush:cpp; class-name:dark;"&gt;int Wave::find_best(vector&amp;lt;float&amp;gt; sample) {
    vector&amp;lt;complex&amp;lt;float&amp;gt;&amp;gt; output(data.size());
    sample.resize(data.size(), 0);

    DFTI_DESCRIPTOR_HANDLE fft = NULL;
    MKL_LONG status;
    status = DftiCreateDescriptor(&amp;amp;fft, DFTI_SINGLE, DFTI_COMPLEX, 1, data.size());
    cout &amp;lt;&amp;lt; "1: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl;
    status = DftiSetValue(fft, DFTI_PLACEMENT, DFTI_NOT_INPLACE);
    cout &amp;lt;&amp;lt; "2: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl; 
    status = DftiCommitDescriptor(fft);
    cout &amp;lt;&amp;lt; "3: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl; 
    status = DftiComputeForward(fft, sample.data(), output.data());
    cout &amp;lt;&amp;lt; "4: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl; 
    status = DftiFreeDescriptor(&amp;amp;fft);
    cout &amp;lt;&amp;lt; "5: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl;&lt;/PRE&gt;

&lt;P&gt;I get a runtime error at the "DftiComputeForward" line.&lt;/P&gt;
&lt;P&gt;Unhandled exception at 0x00007FFE47DF1756 (mkl_avx2.dll) in MyProgram.exe: 0xC0000005: Access violation reading location 0x0000027327E56000.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If any of you fine gentlemen have any idea, I'll gladly investigate.&lt;/P&gt;
&lt;P&gt;Thank you in advance !&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2020 19:28:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149717#M27008</guid>
      <dc:creator>ROUSSEAU__Thomas</dc:creator>
      <dc:date>2020-04-09T19:28:21Z</dc:date>
    </item>
    <item>
      <title>MKL has fixed more then 7</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149718#M27009</link>
      <description>&lt;P&gt;MKL has&amp;nbsp;fixed more then 7 issues related to FFT the last two versions ( 2019 and 2020).&amp;nbsp; Please check the problem with the current version of mkl or/and give us the reproduced which I could compile and execute on my end...&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 13:41:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149718#M27009</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-04-10T13:41:05Z</dc:date>
    </item>
    <item>
      <title>Quote:ROUSSEAU, Thomas wrote:</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149719#M27010</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;ROUSSEAU, Thomas wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any improvment on this front ?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm having the exact same error, on a different usecase.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a Wave object (glorified wrapper to load a wav file into a vector&amp;lt;float&amp;gt;), and this function, whose goal is to find the best matching position between my object and a given sample.&amp;nbsp;&lt;/P&gt;
&lt;PRE class="brush:cpp; class-name:dark;"&gt;int Wave::find_best(vector&amp;lt;float&amp;gt; sample) {
    vector&amp;lt;complex&amp;lt;float&amp;gt;&amp;gt; output(data.size());
    sample.resize(data.size(), 0);

    DFTI_DESCRIPTOR_HANDLE fft = NULL;
    MKL_LONG status;
    status = DftiCreateDescriptor(&amp;amp;fft, DFTI_SINGLE, DFTI_COMPLEX, 1, data.size());
    cout &amp;lt;&amp;lt; "1: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl;
    status = DftiSetValue(fft, DFTI_PLACEMENT, DFTI_NOT_INPLACE);
    cout &amp;lt;&amp;lt; "2: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl; 
    status = DftiCommitDescriptor(fft);
    cout &amp;lt;&amp;lt; "3: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl; 
    status = DftiComputeForward(fft, sample.data(), output.data());
    cout &amp;lt;&amp;lt; "4: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl; 
    status = DftiFreeDescriptor(&amp;amp;fft);
    cout &amp;lt;&amp;lt; "5: " &amp;lt;&amp;lt; status &amp;lt;&amp;lt; endl;&lt;/PRE&gt;

&lt;P&gt;I get a runtime error at the "DftiComputeForward" line.&lt;/P&gt;
&lt;P&gt;Unhandled exception at 0x00007FFE47DF1756 (mkl_avx2.dll) in MyProgram.exe: 0xC0000005: Access violation reading location 0x0000027327E56000.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If any of you fine gentlemen have any idea, I'll gladly investigate.&lt;/P&gt;
&lt;P&gt;Thank you in advance !&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First, I have no bullet proof solution but concerning my problem I&amp;nbsp;discovered that&lt;STRONG&gt; I had a bug using Intel's MKL library&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;in a completely different place&amp;nbsp;from where the crashes happened&lt;/STRONG&gt; ( it even was not in the same translation unit but it was in the same project/solution): the bug was that I used MKL&amp;nbsp;&lt;EM&gt;cblas_dgemm&lt;/EM&gt;(...) in-place -&amp;nbsp;the same buffer used for both input and output since I multiplied NX1 vector with NXN matrix - that&amp;nbsp;is forbidden and after I used a different buffer for the output all the crashes from mkl_avx2.dll disappered and my problem solved.&lt;/P&gt;
&lt;P&gt;So my advice to you is that if you are sure that the code fragment above is correct check other usages of MKL functions in your code and make sure they are correct.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Apr 2020 10:37:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Rare-crashes-on-MKL/m-p/1149719#M27010</guid>
      <dc:creator>kup__benny</dc:creator>
      <dc:date>2020-04-12T10:37:00Z</dc:date>
    </item>
  </channel>
</rss>

