<?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 Re: Memory leak, mkl::dft on Intel GPU, only on Windows? in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1516113#M34972</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are working on your issue. We will get back to you soon.&lt;/P&gt;
&lt;P&gt;And also, could you please let us know&amp;nbsp;&lt;SPAN&gt;how much is the Shared GPU memory while the utilization is 0% on Intel(R) Iris(R) Xe Graphics?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Varsha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 22 Aug 2023 06:57:29 GMT</pubDate>
    <dc:creator>VarshaS_Intel</dc:creator>
    <dc:date>2023-08-22T06:57:29Z</dc:date>
    <item>
      <title>Memory leak, mkl::dft on Intel GPU, only on Windows?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1512259#M34922</link>
      <description>&lt;P&gt;Hi, I've been running into a memory leak when doing DFTs using the oneAPI SYCL version of MKL's DFT. I pasted below a simplified program that will reproduce it. Basically, if I use a GPU/default selector to run it, e.g. on the Xe graphics of my laptop, under Windows, it will be occupying 4 GB once it finishes after a few seconds. Running on a cpu_selector_v, this doesn't happen. If I run the same code under Linux, there is no apparent leak on GPU, as well.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The memory use builds up over repeated calls to&amp;nbsp;&lt;SPAN&gt;oneapi::mkl::dft::compute_forward()&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Does anyone else see this behavior? Is there something I'm not doing right here?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This is with oneAPI 2023.2.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;#include &amp;lt;sycl/sycl.hpp&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;#include &amp;lt;oneapi/mkl/dfti.hpp&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;#include &amp;lt;complex&amp;gt;&lt;/DIV&gt;&lt;DIV&gt;int main() {&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;const int Ntime = 1024;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;const int Nfreq = Ntime / 2 + 1;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;const int NrepetitionsFFTs = 1048576/2;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;//create queue (default selector in my case will be Xe graphics GPU)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;sycl::queue q{ sycl::default_selector_v, sycl::property::queue::in_order() };&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;//allocate device memory and zero it&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;float* deviceA = reinterpret_cast&amp;lt;float*&amp;gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;sycl::malloc_device(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;Ntime * sizeof(float),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;q.get_device(),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;q.get_context()));&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;std::complex&amp;lt;float&amp;gt;* deviceB = reinterpret_cast&amp;lt;std::complex&amp;lt;float&amp;gt;*&amp;gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;sycl::malloc_device(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;Nfreq * sizeof(std::complex&amp;lt;float&amp;gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;q.get_device(),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;q.get_context()));&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;q.memset(deviceA, 0, Ntime * sizeof(float)).wait();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;//Create DFT descriptor&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;auto fftDescriptorForward =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;oneapi::mkl::dft::descriptor&amp;lt;oneapi::mkl::dft::precision::SINGLE, oneapi::mkl::dft::domain::REAL&amp;gt;(Ntime);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;fftDescriptorForward.set_value(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;oneapi::mkl::dft::config_param::PLACEMENT, DFTI_CONFIG_VALUE::DFTI_NOT_INPLACE);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;fftDescriptorForward.commit(q);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;//repeat fft NrepetitionsFFTs times&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;for (int j = 0; j &amp;lt; NrepetitionsFFTs; j++) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;oneapi::mkl::dft::compute_forward(fftDescriptorForward, deviceA, deviceB);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;q.wait();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;sycl::free(deviceA, q);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;sycl::free(deviceB, q);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;#ifdef __linux__&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;system("read");&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;#else&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-60px"&gt;&lt;SPAN&gt;system("pause");&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;#endif&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;return 0;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;}&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 21:41:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1512259#M34922</guid>
      <dc:creator>NickKMPQ</dc:creator>
      <dc:date>2023-08-08T21:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: Memory leak, mkl::dft on Intel GPU, only on Windows?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1513326#M34947</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for posting in Intel Communities&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for providing the details. When we tried the sample reproducer code provided by you, we saw that the memory utilization is normal, but the time to run is more in Windows compared to Linux.&lt;/P&gt;
&lt;P&gt;Please find the below details of the machine where we are running the code:&lt;/P&gt;
&lt;P&gt;CPU - Intel(R) Core(TM) i7-8665U CPU @ 1.90GHz 3.0 [2023.15.3.0.20_160000]&lt;/P&gt;
&lt;P&gt;Intel(R) OpenCL HD Graphics, Intel(R) UHD Graphics 620 3.0 [31.0.101.2111]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;it will be occupying 4 GB once it finishes after a few seconds.&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Could you please elaborate on your issue and provide us with all the observations from your side on GPU to investigate more from our end?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Besides the memory leak, could you please let us know if you observed any crashes while running the sample code on GPU?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Varsha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 14:59:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1513326#M34947</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-08-11T14:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: Memory leak, mkl::dft on Intel GPU, only on Windows?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1513444#M34951</link>
      <description>&lt;P&gt;Thanks for the response. I have tried the same compiled binary on two laptops now, and interestingly it only happens on the newer one:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Exhibits memory leak:&lt;/P&gt;&lt;P&gt;12th Gen Intel(R) Core(TM) i7-1270P&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Intel(R) Iris(R) Xe Graphics&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does not exhibit leak:&lt;/P&gt;&lt;P&gt;Intel(R) Core(TM) i7-6567U CPU @ 3.30GHz&lt;BR /&gt;Intel(R) Iris(R) Graphics 550&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I attached screenshots of Task Manager while the test runs on the two machines. You can see the continuous build-up of memory use only on the Xe Graphics model, and if I boot that one into Linux and compile/run the code there, there is no leak. It seems to be specific to Windows and this GPU.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried rolling back the graphics driver, but this didn't make a difference. I'm currenly using the newest driver,&amp;nbsp;31.0.101.4577&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I increase the number of repetitions such that it fills the memory, it will crash, with the message "Abort was called at 268 line in file:"&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 19:04:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1513444#M34951</guid>
      <dc:creator>NickKMPQ</dc:creator>
      <dc:date>2023-08-11T19:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: Memory leak, mkl::dft on Intel GPU, only on Windows?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1516113#M34972</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are working on your issue. We will get back to you soon.&lt;/P&gt;
&lt;P&gt;And also, could you please let us know&amp;nbsp;&lt;SPAN&gt;how much is the Shared GPU memory while the utilization is 0% on Intel(R) Iris(R) Xe Graphics?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Varsha&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2023 06:57:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1516113#M34972</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-08-22T06:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: Memory leak, mkl::dft on Intel GPU, only on Windows?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1516840#M34983</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;thanks for looking into it - on this system, the baseline with everything closed is 0.3/7.8 GB - is that what you are looking for?&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Nick&lt;/P&gt;</description>
      <pubDate>Wed, 23 Aug 2023 14:42:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1516840#M34983</guid>
      <dc:creator>NickKMPQ</dc:creator>
      <dc:date>2023-08-23T14:42:58Z</dc:date>
    </item>
    <item>
      <title>Re:Memory leak, mkl::dft on Intel GPU, only on Windows?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1519700#M35021</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt;is that what you are looking for?&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Yes, this is what I am looking for.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We are working on your issue, we will get back to you soon.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 01 Sep 2023 14:26:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1519700#M35021</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-09-01T14:26:25Z</dc:date>
    </item>
    <item>
      <title>Re:Memory leak, mkl::dft on Intel GPU, only on Windows?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1526623#M35166</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Apologies for the delay in my response and Thanks for your patience.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;When we tried on the Intel Iris Xe Graphics, we did not find any high utilization of shared memory issues. At our end, we are using the driver version 31.0.101.4826.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please try to upgrade your drivers then run the code and let us know if you are still facing more utilization of shared memory issues?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 22 Sep 2023 10:39:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1526623#M35166</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-09-22T10:39:34Z</dc:date>
    </item>
    <item>
      <title>Re:Memory leak, mkl::dft on Intel GPU, only on Windows?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1528880#M35210</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We have not heard back from you. Could you please provide us with an update on the issue?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 29 Sep 2023 16:00:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1528880#M35210</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-09-29T16:00:48Z</dc:date>
    </item>
    <item>
      <title>Re:Memory leak, mkl::dft on Intel GPU, only on Windows?</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1531653#M35267</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We have not heard back from you. Could you please try updating your driver and let us know if you have issue?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Varsha&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 09 Oct 2023 04:54:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/Memory-leak-mkl-dft-on-Intel-GPU-only-on-Windows/m-p/1531653#M35267</guid>
      <dc:creator>VarshaS_Intel</dc:creator>
      <dc:date>2023-10-09T04:54:53Z</dc:date>
    </item>
  </channel>
</rss>

