<?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 Help with FFTInv_CCSToR and FFTInv_CToC in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Help-with-FFTInv-CCSToR-and-FFTInv-CToC/m-p/983283#M21520</link>
    <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;I'd like to use the Noise Reduction implementation provided by Intel on a PCA architecture.&lt;/P&gt;
&lt;P&gt;First, it seems that, despite what the implementation and the PCA manual say, the "ippsFFTFwd_RToCSS_32s16s_Sfs" and "ippsFFTInv_CCSToR_32s16s_Sfs" functions are only available on PC, not on PCA.&lt;/P&gt;
&lt;P&gt;I have tried to get around that problem by using the only FFT functions that I have found to be available: "ippsFFT*_CToC_16s_Sfs". Of course, this requires me to do some type conversion. It works just fine for the forward transform, however I can't seem to get the inverse transform to work.&lt;/P&gt;
&lt;P&gt;I have implemented the following on PC:&lt;BR /&gt;&lt;/P&gt;
&lt;DIV style="BORDER-RIGHT: black 1px solid; PADDING-RIGHT: 10px; BORDER-TOP: black 1px solid; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; BORDER-LEFT: black 1px solid; PADDING-TOP: 10px; BORDER-BOTTOM: black 1px solid"&gt;&lt;SPAN class="text_smallest"&gt;Code:&lt;/SPAN&gt;&lt;PRE&gt;ippsFFTInv_CCSToR_32s16s_Sfs((Ipp32s*)pNRState-&amp;gt;pFilterOutput, pNewTimeFilterOutput16s,&lt;BR /&gt;	pNRState-&amp;gt;pFFTR, 0, pNRState-&amp;gt;pBuffer);
ippsFFTInv_CToC_16sc_Sfs(pInputFFT, pOutputFFT,&lt;BR /&gt;	pNRState-&amp;gt;pFFTR2, 0, pNRState-&amp;gt;pBuffer2);&lt;/PRE&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;EM&gt;pInputFFT&lt;/EM&gt; is a Ipp16sc array, &lt;EM&gt;pNRState-&amp;gt;pFilterOutput&lt;/EM&gt; is a Ipp32sc array. They contain exactly the same values (no overflow).&lt;/P&gt;
&lt;P&gt;After execution, &lt;EM&gt;pNewTimeFilterOutput16s&lt;/EM&gt; (Ipp16s array) contains the correct values. What I want is to get those values in &lt;EM&gt;pOutputFFT&lt;/EM&gt; (Ipp16sc array).&lt;/P&gt;
&lt;P&gt;The problem is that &lt;EM&gt;pOutputFFT&lt;/EM&gt;'s elements have non-null imaginary parts. I've tried discarding the imaginary parts, computing the norm, etc. but each time I get wrong values.&lt;/P&gt;
&lt;P&gt;Is there something I'm doing wrong? Any help would be greatly appreciated.&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Oliver&lt;/P&gt;</description>
    <pubDate>Mon, 25 Jul 2005 22:15:23 GMT</pubDate>
    <dc:creator>thales_oliver</dc:creator>
    <dc:date>2005-07-25T22:15:23Z</dc:date>
    <item>
      <title>Help with FFTInv_CCSToR and FFTInv_CToC</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Help-with-FFTInv-CCSToR-and-FFTInv-CToC/m-p/983283#M21520</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;I'd like to use the Noise Reduction implementation provided by Intel on a PCA architecture.&lt;/P&gt;
&lt;P&gt;First, it seems that, despite what the implementation and the PCA manual say, the "ippsFFTFwd_RToCSS_32s16s_Sfs" and "ippsFFTInv_CCSToR_32s16s_Sfs" functions are only available on PC, not on PCA.&lt;/P&gt;
&lt;P&gt;I have tried to get around that problem by using the only FFT functions that I have found to be available: "ippsFFT*_CToC_16s_Sfs". Of course, this requires me to do some type conversion. It works just fine for the forward transform, however I can't seem to get the inverse transform to work.&lt;/P&gt;
&lt;P&gt;I have implemented the following on PC:&lt;BR /&gt;&lt;/P&gt;
&lt;DIV style="BORDER-RIGHT: black 1px solid; PADDING-RIGHT: 10px; BORDER-TOP: black 1px solid; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; BORDER-LEFT: black 1px solid; PADDING-TOP: 10px; BORDER-BOTTOM: black 1px solid"&gt;&lt;SPAN class="text_smallest"&gt;Code:&lt;/SPAN&gt;&lt;PRE&gt;ippsFFTInv_CCSToR_32s16s_Sfs((Ipp32s*)pNRState-&amp;gt;pFilterOutput, pNewTimeFilterOutput16s,&lt;BR /&gt;	pNRState-&amp;gt;pFFTR, 0, pNRState-&amp;gt;pBuffer);
ippsFFTInv_CToC_16sc_Sfs(pInputFFT, pOutputFFT,&lt;BR /&gt;	pNRState-&amp;gt;pFFTR2, 0, pNRState-&amp;gt;pBuffer2);&lt;/PRE&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;EM&gt;pInputFFT&lt;/EM&gt; is a Ipp16sc array, &lt;EM&gt;pNRState-&amp;gt;pFilterOutput&lt;/EM&gt; is a Ipp32sc array. They contain exactly the same values (no overflow).&lt;/P&gt;
&lt;P&gt;After execution, &lt;EM&gt;pNewTimeFilterOutput16s&lt;/EM&gt; (Ipp16s array) contains the correct values. What I want is to get those values in &lt;EM&gt;pOutputFFT&lt;/EM&gt; (Ipp16sc array).&lt;/P&gt;
&lt;P&gt;The problem is that &lt;EM&gt;pOutputFFT&lt;/EM&gt;'s elements have non-null imaginary parts. I've tried discarding the imaginary parts, computing the norm, etc. but each time I get wrong values.&lt;/P&gt;
&lt;P&gt;Is there something I'm doing wrong? Any help would be greatly appreciated.&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Oliver&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jul 2005 22:15:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Help-with-FFTInv-CCSToR-and-FFTInv-CToC/m-p/983283#M21520</guid>
      <dc:creator>thales_oliver</dc:creator>
      <dc:date>2005-07-25T22:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: Help with FFTInv_CCSToR and FFTInv_CToC</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Help-with-FFTInv-CCSToR-and-FFTInv-CToC/m-p/983284#M21521</link>
      <description>&lt;DIV&gt;Hi,&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;some difference is possible in imaginary part of signal if you use complex function FFTInvCToC instead of real function FFTInvCCSToR. If your input data is reasonable, this difference should be small enough.&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;The question is are your input 32s data can be placed into 16s type?&lt;/DIV&gt;
&lt;DIV&gt;Which order of FFT did you use?&lt;/DIV&gt;
&lt;DIV&gt;Which IPP library did you use?&lt;/DIV&gt;
&lt;DIV&gt;&lt;/DIV&gt;
&lt;DIV&gt;Regards,&lt;/DIV&gt;
&lt;DIV&gt; Vladimir&lt;/DIV&gt;</description>
      <pubDate>Wed, 24 Aug 2005 03:27:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Help-with-FFTInv-CCSToR-and-FFTInv-CToC/m-p/983284#M21521</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2005-08-24T03:27:58Z</dc:date>
    </item>
  </channel>
</rss>

