<?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: call dfftw_destroy_plan(plan)  in Intel® oneAPI Math Kernel Library</title>
    <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/call-dfftw-destroy-plan-plan/m-p/861205#M7540</link>
    <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/433393"&gt;ppthelion&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;I used fftw3xf lib to do FFT, but when I want to call dfftw_destroy_Plan(plan) to kill it . There happens a error: "program exception --access violatio" I'm not sure why this happen , I use this liberary for a long time ,this is the first time I meet it,Why? &lt;BR /&gt;Thanks for your answer!&lt;BR /&gt;yous!&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hi ppthelion!&lt;BR /&gt;&lt;BR /&gt;Access violation means that the application accessed the memory at an address that it isn't authorized to access.&lt;BR /&gt;&lt;BR /&gt;In the MKL FFTW wrappers, FFTW plans are actually pointers.&lt;BR /&gt;If your application creates &lt;EM&gt;plan&lt;/EM&gt; and then unintentionally stores something there (e.g. due to running out of the boundary of an array that is declared before &lt;EM&gt;plan &lt;/EM&gt;in your application), you're likely to get an access violation under Windows.&lt;BR /&gt;&lt;BR /&gt;If you suspect that the problem isn't in your application, please post a reproducer here.&lt;BR /&gt;&lt;BR /&gt;-Evgueni.</description>
    <pubDate>Tue, 15 Dec 2009 03:55:56 GMT</pubDate>
    <dc:creator>Evgueni_P_Intel</dc:creator>
    <dc:date>2009-12-15T03:55:56Z</dc:date>
    <item>
      <title>call dfftw_destroy_plan(plan)</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/call-dfftw-destroy-plan-plan/m-p/861204#M7539</link>
      <description>I used fftw3xf lib to do FFT, but when I want to call dfftw_destroy_Plan(plan) to kill it . There happens a error: "program exception --access violatio" I'm not sure why this happen , I use this liberary for a long time ,this is the first time I meet it,Why? &lt;BR /&gt;Thanks for your answer!&lt;BR /&gt;yous!</description>
      <pubDate>Tue, 15 Dec 2009 03:24:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/call-dfftw-destroy-plan-plan/m-p/861204#M7539</guid>
      <dc:creator>ppthelion</dc:creator>
      <dc:date>2009-12-15T03:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: call dfftw_destroy_plan(plan)</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/call-dfftw-destroy-plan-plan/m-p/861205#M7540</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="margin-top: 5px; width: 100%;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/433393"&gt;ppthelion&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt;I used fftw3xf lib to do FFT, but when I want to call dfftw_destroy_Plan(plan) to kill it . There happens a error: "program exception --access violatio" I'm not sure why this happen , I use this liberary for a long time ,this is the first time I meet it,Why? &lt;BR /&gt;Thanks for your answer!&lt;BR /&gt;yous!&lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;Hi ppthelion!&lt;BR /&gt;&lt;BR /&gt;Access violation means that the application accessed the memory at an address that it isn't authorized to access.&lt;BR /&gt;&lt;BR /&gt;In the MKL FFTW wrappers, FFTW plans are actually pointers.&lt;BR /&gt;If your application creates &lt;EM&gt;plan&lt;/EM&gt; and then unintentionally stores something there (e.g. due to running out of the boundary of an array that is declared before &lt;EM&gt;plan &lt;/EM&gt;in your application), you're likely to get an access violation under Windows.&lt;BR /&gt;&lt;BR /&gt;If you suspect that the problem isn't in your application, please post a reproducer here.&lt;BR /&gt;&lt;BR /&gt;-Evgueni.</description>
      <pubDate>Tue, 15 Dec 2009 03:55:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/call-dfftw-destroy-plan-plan/m-p/861205#M7540</guid>
      <dc:creator>Evgueni_P_Intel</dc:creator>
      <dc:date>2009-12-15T03:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: call dfftw_destroy_plan(plan)</title>
      <link>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/call-dfftw-destroy-plan-plan/m-p/861206#M7541</link>
      <description>&lt;DIV style="margin:0px;"&gt;Thanks for your constructive reply! I have checked my program exactly, at last ,I found the reason comes from the optional parameters send-receive on fly,It's my inattention ! &lt;BR /&gt;Thanks a lot!&lt;BR /&gt;have a nice day!&lt;/DIV&gt;</description>
      <pubDate>Tue, 15 Dec 2009 08:47:29 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-oneAPI-Math-Kernel-Library/call-dfftw-destroy-plan-plan/m-p/861206#M7541</guid>
      <dc:creator>ppthelion</dc:creator>
      <dc:date>2009-12-15T08:47:29Z</dc:date>
    </item>
  </channel>
</rss>

