<?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 NIkita. in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047138#M21015</link>
    <description>&lt;P&gt;Hi NIkita.&lt;/P&gt;

&lt;P&gt;I discovered that the VML library doesn't free the memory - you can try running the attached project and see that although I allocated memory on the stack, the memory keeps growing constantly. I suspect the the VML library doesn't free its allocated data.&lt;/P&gt;

&lt;P&gt;Is there any function to call in order to free the allocated memory?&lt;/P&gt;

&lt;P&gt;I have tried to run&amp;nbsp;MKLFreeTls function but without success - can you give me some example of how to use this function.&lt;/P&gt;

&lt;P&gt;On the same subject I tried to limit the number of threads MKL is using by calling the function&amp;nbsp;&lt;EM&gt;mkl_set_num_threads&amp;nbsp;&lt;/EM&gt;but I keep on getting this error :&amp;nbsp;&lt;BR /&gt;
	&lt;EM&gt;Attempted to read or write protected memory. This is often an indication that other memory is corrupt. &lt;/EM&gt;any idea why? (I set 4 as value)&lt;/P&gt;

&lt;P&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Tue, 18 Aug 2015 06:15:00 GMT</pubDate>
    <dc:creator>Nadav_H_</dc:creator>
    <dc:date>2015-08-18T06:15:00Z</dc:date>
    <item>
      <title>Attempted to read or write protected memory when calling VML functions</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047130#M21007</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I build a small &lt;SPAN style="font-size: 13.0080003738403px; line-height: 19.5120010375977px;"&gt;C#&amp;nbsp;&lt;/SPAN&gt;project that calculate some VML functions:&lt;BR /&gt;
	Abs , Arg, Add, Mult, Cos, Sin&lt;BR /&gt;
	I ran this functions in multi threads - about 3000 threads using .Net threadpool that use only 4 threads.&lt;/P&gt;

&lt;P&gt;Sometimes an exception occur : "Attempted to read or write protected memory. This is often an indication that other memory is corrupt.&lt;/P&gt;

&lt;P&gt;I attached the project and the exception screenshot.&lt;/P&gt;</description>
      <pubDate>Wed, 05 Aug 2015 11:35:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047130#M21007</guid>
      <dc:creator>Nadav_H_</dc:creator>
      <dc:date>2015-08-05T11:35:54Z</dc:date>
    </item>
    <item>
      <title>Hello Nadav,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047131#M21008</link>
      <description>&lt;P&gt;Hello Nadav,&lt;BR /&gt;
	I cannot reproduce your issue, but I have an idea on what could go wrong.&lt;/P&gt;

&lt;P&gt;In your code you call the VML functions with mode parameter &lt;SPAN style="font-size: 13.0080003738403px; line-height: 19.5120010375977px;"&gt;[last]&lt;/SPAN&gt;. That mode parameter has to be 64-bit integer (please see the documentation) and your code declares functions as taking 32-bit integer instead. Since we use cdecl convention we are reading the arguments from the stack. So our functions may be referencing the memory that you haven't allocated or may be touching whatever the security cookie that .NET compiler places there. Which would explain the exception. I may have a different version of compiler and may not have the same security circumstances as you have.&lt;/P&gt;

&lt;P&gt;So please try to correct the error in your code and see if it helps.&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Nikita Astafiev&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Aug 2015 23:16:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047131#M21008</guid>
      <dc:creator>Nikita_A_Intel</dc:creator>
      <dc:date>2015-08-07T23:16:33Z</dc:date>
    </item>
    <item>
      <title>Hi Nikita.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047132#M21009</link>
      <description>&lt;P style="font-size: 13.0080003738403px; line-height: 19.5120010375977px;"&gt;Hi Nikita.&lt;/P&gt;

&lt;P style="font-size: 13.0080003738403px; line-height: 19.5120010375977px;"&gt;I continue the testing with v?Abs and v?Arg and it seems that vsAbs and vsArg works fine, but when I use the vcAbs and vcArg I get the exception.&lt;/P&gt;

&lt;P style="font-size: 13.0080003738403px; line-height: 19.5120010375977px;"&gt;Is there a way to transfer 2 float arrays instead of 1&amp;nbsp;MKL_Complex8&amp;nbsp;array?&lt;/P&gt;

&lt;P style="font-size: 13.0080003738403px; line-height: 19.5120010375977px;"&gt;I'm attaching the project after some modification - now we call only vcAbs and vcArgs.&lt;BR /&gt;
	I ran it on 64 bit platform.&lt;/P&gt;

&lt;P style="font-size: 13.0080003738403px; line-height: 19.5120010375977px;"&gt;* The exception not always thrown in the first run - usually it takes 4-5 runs till we get the exception.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Aug 2015 08:44:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047132#M21009</guid>
      <dc:creator>Nadav_H_</dc:creator>
      <dc:date>2015-08-12T08:44:40Z</dc:date>
    </item>
    <item>
      <title>Hi Nadav,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047133#M21010</link>
      <description>&lt;P&gt;Hi Nadav,&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I took a look at your new code and it still works fine for me. I guess at this point I need to know the version of visual studio that you use and ask you try and find the minimum vector lengths and number of threads at which the exceptions still occur. I'd also suggest to play with internal threading of VML: try to disable it by setting environment variable: set&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN style="color: rgb(102, 102, 102); font-family: Arial, Tahoma, Helvetica, sans-serif; font-size: 14px; line-height: 16.7999992370605px;"&gt;MKL_NUM_THREADS=1.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;To quickly answer your other question: yes you can use v?Hypot function instead of complex absolute value. And you can use v?Atan2 instead of complex argument. These accept real arrays.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Thanks,&lt;BR /&gt;
	Nikita&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Aug 2015 21:24:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047133#M21010</guid>
      <dc:creator>Nikita_A_Intel</dc:creator>
      <dc:date>2015-08-12T21:24:00Z</dc:date>
    </item>
    <item>
      <title>Hi Nikita.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047134#M21011</link>
      <description>&lt;P&gt;Hi Nikita.&lt;/P&gt;

&lt;P&gt;Thank you for the replay.&lt;/P&gt;

&lt;P&gt;I replaced the Abs and Arg functions with Hypot and Atan2 and that works fine for me.&lt;/P&gt;

&lt;P&gt;Just another last question to make sure - if I want to use the mode for the fastest calculation (less accurate) &amp;nbsp;I should use 3 correct?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2015 06:51:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047134#M21011</guid>
      <dc:creator>Nadav_H_</dc:creator>
      <dc:date>2015-08-13T06:51:50Z</dc:date>
    </item>
    <item>
      <title>Hi Nadav,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047135#M21012</link>
      <description>&lt;P&gt;Hi Nadav,&lt;BR /&gt;
	yes, currently VML_EP mode is the fastest and it is set to 3. Of course I'd encourage you to use VML header files and macros as much as you can to avoid problems with updates to new library releases. One more aspect if you want maximum performance: mode parameter passed to every function call is meant for those who need granular control over functions' accuracy. If you are fine with EP mode everywhere, I'd suggest that you call vmlSetMode() function once before calling any of the computational functions and then refrain from calling the functions with mode parameter - this shall save some start-up time for VML. You should align your arrays to at least 32-bytes for best performance on AVX/AVX2 capable machines. You may also want to reuse your buffers and pass the same pointer as input and output array (e.g. Atan2 could return its result overwriting either x or y input vector - just make sure the sizes of arrays agree).&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Nikita&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Aug 2015 17:54:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047135#M21012</guid>
      <dc:creator>Nikita_A_Intel</dc:creator>
      <dc:date>2015-08-13T17:54:27Z</dc:date>
    </item>
    <item>
      <title>Hi Nikita.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047136#M21013</link>
      <description>&lt;P&gt;Hi Nikita.&lt;/P&gt;

&lt;P&gt;Thank you for the good tips.&lt;/P&gt;

&lt;P&gt;Regarding the Mode configuration of the VML - all the VMLNative functions that I use are static, if I configure Mode value once does it tak effect for all the VMLNative function calls?&lt;/P&gt;

&lt;P&gt;When I use the DFTI library I create Descriptor, configure it and use it for all the FFT and IFFT operations.&lt;BR /&gt;
	In VML library I found there is no use for such descriptor.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Aug 2015 08:12:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047136#M21013</guid>
      <dc:creator>Nadav_H_</dc:creator>
      <dc:date>2015-08-16T08:12:19Z</dc:date>
    </item>
    <item>
      <title>Hi Nadav,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047137#M21014</link>
      <description>&lt;P&gt;Hi Nadav,&lt;BR /&gt;
	&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;the mode&lt;/SPAN&gt;&lt;SPAN style="color: rgb(102, 102, 102); font-family: Arial, Tahoma, Helvetica, sans-serif; font-size: 13px; line-height: 18.2000007629395px;"&gt;&amp;nbsp;change has a global effect on all the VML functions &lt;STRONG&gt;within a thread&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="color: rgb(102, 102, 102); font-family: Arial, Tahoma, Helvetica, sans-serif; font-size: 13px; line-height: 18.2000007629395px;"&gt;Thanks,&lt;BR /&gt;
	Nikita&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2015 19:06:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047137#M21014</guid>
      <dc:creator>Nikita_A_Intel</dc:creator>
      <dc:date>2015-08-17T19:06:10Z</dc:date>
    </item>
    <item>
      <title>Hi NIkita.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047138#M21015</link>
      <description>&lt;P&gt;Hi NIkita.&lt;/P&gt;

&lt;P&gt;I discovered that the VML library doesn't free the memory - you can try running the attached project and see that although I allocated memory on the stack, the memory keeps growing constantly. I suspect the the VML library doesn't free its allocated data.&lt;/P&gt;

&lt;P&gt;Is there any function to call in order to free the allocated memory?&lt;/P&gt;

&lt;P&gt;I have tried to run&amp;nbsp;MKLFreeTls function but without success - can you give me some example of how to use this function.&lt;/P&gt;

&lt;P&gt;On the same subject I tried to limit the number of threads MKL is using by calling the function&amp;nbsp;&lt;EM&gt;mkl_set_num_threads&amp;nbsp;&lt;/EM&gt;but I keep on getting this error :&amp;nbsp;&lt;BR /&gt;
	&lt;EM&gt;Attempted to read or write protected memory. This is often an indication that other memory is corrupt. &lt;/EM&gt;any idea why? (I set 4 as value)&lt;/P&gt;

&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2015 06:15:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047138#M21015</guid>
      <dc:creator>Nadav_H_</dc:creator>
      <dc:date>2015-08-18T06:15:00Z</dc:date>
    </item>
    <item>
      <title>Hi Nadav,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047139#M21016</link>
      <description>&lt;P&gt;Hi Nadav,&lt;BR /&gt;
	I do not see the memory growing constantly. In my case it grows up to maybe 18MB and then it stops and clears. Actually VML is not supposed to allocate memory - we use the memory that you pass to us via pointers.&lt;/P&gt;

&lt;P&gt;You may want to use mkl_thread_free_buffers() after you finished with MKL calls in a current thread or mkl_free_buffers() after you are done with MKL in your app as a whole. I don't think MKLFreeTLS is for your case.&lt;/P&gt;

&lt;P&gt;Have you tried to take VML out of equation and supply your own functions instead? e.g. write a trivial loop in native C that would emulate VML behavior. Just to see if the exceptions still occur?&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
	Nikita&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2015 22:20:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047139#M21016</guid>
      <dc:creator>Nikita_A_Intel</dc:creator>
      <dc:date>2015-08-19T22:20:49Z</dc:date>
    </item>
    <item>
      <title>Hi Nikita.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047140#M21017</link>
      <description>&lt;P&gt;Hi Nikita.&lt;/P&gt;

&lt;P&gt;Every time I try to call one of this functions:&lt;BR /&gt;
	&lt;EM&gt;mkl_set_num_threads&lt;BR /&gt;
	mkl_domain_set_num_threads&lt;BR /&gt;
	mkl_set_num_threads&lt;/EM&gt;&lt;BR /&gt;
	&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;&lt;EM&gt;mkl_free_buffers&lt;/EM&gt;&lt;BR /&gt;
	I get and exception : "&lt;/SPAN&gt;&lt;EM&gt;Attempted to read or write protected memory. This is often an indication that other memory is corrupt."&lt;/EM&gt;&lt;/P&gt;

&lt;P&gt;All other function works fine - do you know why I get this exception? am I using the MKL correctly?&lt;/P&gt;

&lt;P&gt;We are really looking forward to integrate MKL in our project but it seems that we need some support.&lt;BR /&gt;
	Is there an option to do a remote session so we can show the support all our issues:&lt;BR /&gt;
	* increasing memory.&lt;BR /&gt;
	* increasing number of threads.&lt;BR /&gt;
	We are willing to pay for this support.&lt;/P&gt;

&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2015 06:44:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047140#M21017</guid>
      <dc:creator>Nadav_H_</dc:creator>
      <dc:date>2015-08-20T06:44:29Z</dc:date>
    </item>
    <item>
      <title>Hi Nadav,</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047141#M21018</link>
      <description>&lt;P&gt;Hi Nadav,&lt;BR /&gt;
	Now this is something I can reproduce. If I modify your code and call one of the above functions it signals exceptions even if no other calls to MKL. I will pass a word on this to other developers, so hopefully they can get back to you soon.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
	Nikita&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2015 18:20:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047141#M21018</guid>
      <dc:creator>Nikita_A_Intel</dc:creator>
      <dc:date>2015-08-20T18:20:40Z</dc:date>
    </item>
    <item>
      <title>Hi Nikita.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047142#M21019</link>
      <description>&lt;P&gt;Hi Nikita.&lt;/P&gt;

&lt;P&gt;We are still having some issues regarding the increasing threads and memory usage.&lt;BR /&gt;
	I'm attaching a project so you can see the growth of the memory and the threads .&lt;BR /&gt;
	At the end of the project the threads and memory doesn't free as I expected.&lt;/P&gt;

&lt;P&gt;Please run this project and try to reproduce it.&lt;/P&gt;

&lt;P&gt;Do you have any suggestion of how to reduce the memory and threads after we finish using the library.&lt;/P&gt;

&lt;P&gt;Thanks,&lt;BR /&gt;
	Nadav.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Sep 2015 10:27:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047142#M21019</guid>
      <dc:creator>Nadav_H_</dc:creator>
      <dc:date>2015-09-10T10:27:26Z</dc:date>
    </item>
    <item>
      <title>Dear Nadav, Could you please</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047143#M21020</link>
      <description>&lt;P&gt;Dear Nadav,&amp;nbsp;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Could you please check if the problem is still exists with the latest 11.2 update 4 version of MKL. thanks.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2015 11:27:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047143#M21020</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2015-10-05T11:27:22Z</dc:date>
    </item>
    <item>
      <title>Hi Gennady.</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047144#M21021</link>
      <description>&lt;P&gt;Hi Gennady.&lt;/P&gt;

&lt;P&gt;How do I get the update 4 version?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 05:25:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047144#M21021</guid>
      <dc:creator>Nadav_H_</dc:creator>
      <dc:date>2015-10-06T05:25:17Z</dc:date>
    </item>
    <item>
      <title>What version of MKL you are</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047145#M21022</link>
      <description>&lt;P&gt;What version of MKL you are using? if this is 11.2 ,then you have to receive the notification when update 4 of MKL 11.2 has been releasead ( a few weeks ago) and follow the link into this notification, you may download this update.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 06:38:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047145#M21022</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2015-10-06T06:38:29Z</dc:date>
    </item>
    <item>
      <title>I'm using MKL version 11.2</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047146#M21023</link>
      <description>&lt;P&gt;I'm using MKL version 11.2 but I didn't received the update link.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 06:41:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047146#M21023</guid>
      <dc:creator>Nadav_H_</dc:creator>
      <dc:date>2015-10-06T06:41:18Z</dc:date>
    </item>
    <item>
      <title>I couldn't find out the lic</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047147#M21024</link>
      <description>&lt;P&gt;I couldn't find out the lic or S/N for MKL assigned to your name or with your company name. Could you give me this info via private thread?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Oct 2015 17:12:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Attempted-to-read-or-write-protected-memory-when-calling-VML/m-p/1047147#M21024</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2015-10-06T17:12:53Z</dc:date>
    </item>
  </channel>
</rss>

