<?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: ippsResamplePolyphase in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929115#M16473</link>
    <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;Hello Brian,&lt;/P&gt;
&lt;P&gt;when you are talking about performance it is also important to notice what operating system and hardware platform was used. Well, I've looked at performance data we provide with IPP (please find them in IPP	oolsperfsysdata folder) and found that there was a performance issue in IPP v5.0 for T7 libraries (P4 SSE3specific code). As you can see, ippsDeinterleave_16sW7 code (P4, SSE2 specific code) takes 1.4 cpu clock per element for 2048 elements array but T7 code take 12 clock per element. This issue was fixed in IPP v5.1 (0.99 clock per element for T7 code) so I recommend you to renew IPP libraries. We are constantly work on improvement of both functionality and performance.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
    <pubDate>Sat, 13 May 2006 02:11:47 GMT</pubDate>
    <dc:creator>Vladimir_Dudnik</dc:creator>
    <dc:date>2006-05-13T02:11:47Z</dc:date>
    <item>
      <title>ippsResamplePolyphase</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929108#M16466</link>
      <description>&lt;DIV&gt;Hi,&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;The samples focus on using ippsResamplePolyphase with mono audio. How do you use it with stereo? A snippet would be great.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thanks,&lt;/DIV&gt;&lt;DIV&gt;Brian&lt;/DIV&gt;</description>
      <pubDate>Fri, 05 May 2006 08:54:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929108#M16466</guid>
      <dc:creator>brian_barber</dc:creator>
      <dc:date>2006-05-05T08:54:33Z</dc:date>
    </item>
    <item>
      <title>Re: ippsResamplePolyphase</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929109#M16467</link>
      <description>&lt;DIV&gt;Hi, Brian,&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;You can nowapply polyphase resampling channel-wise (create two ResamplePolyphase structures, split stereo signal to two mono signals, resample them separately and then combine results to the stereo signal)&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;If the need in stereo resampling and performance requirements are important you can submit IPP feature request to premier.intel.com site.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thanks,&lt;/DIV&gt;&lt;DIV&gt;Alexander&lt;/DIV&gt;</description>
      <pubDate>Fri, 05 May 2006 21:04:01 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929109#M16467</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2006-05-05T21:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: ippsResamplePolyphase</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929110#M16468</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Are there intel primitive functions that would be more efficient in separating the stereo? This is what I have now.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;int separateStereo(short *inputData, int length, short *left, short *right)&lt;BR /&gt;{&lt;BR /&gt;short* p = (short*) inputData;&lt;BR /&gt;if( length &amp;lt;= 0 || length % 2 != 0 || left == NULL || right == NULL || inputData == NULL)&lt;BR /&gt;{&lt;BR /&gt;return -1;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;int numSamplesOut = length/2;&lt;BR /&gt;int i = 0;&lt;BR /&gt;for (int sample = 0; sample &amp;lt; numSamplesOut; ++sample)&lt;BR /&gt;{&lt;BR /&gt;left[sample] = *p++;&lt;BR /&gt;right[sample] = *p++;&lt;BR /&gt;}&lt;BR /&gt;return numSamplesOut;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2006 21:28:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929110#M16468</guid>
      <dc:creator>brian_barber</dc:creator>
      <dc:date>2006-05-05T21:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: ippsResamplePolyphase</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929111#M16469</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;Brian,&lt;/P&gt;&lt;P&gt;We'll extend IPP resampling example to stereo data in the next release.&lt;/P&gt;&lt;P&gt;Alexander&lt;/P&gt;</description>
      <pubDate>Fri, 05 May 2006 21:54:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929111#M16469</guid>
      <dc:creator>Intel_C_Intel</dc:creator>
      <dc:date>2006-05-05T21:54:18Z</dc:date>
    </item>
    <item>
      <title>Re: ippsResamplePolyphase</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929112#M16470</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;please take a look on ippsDeinterleave_16s (counterpart is ippsInterleave) function. It is defined in ippac.h file (ippac library - audio coding domain)&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Sat, 06 May 2006 00:00:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929112#M16470</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2006-05-06T00:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: ippsResamplePolyphase</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929113#M16471</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for the tip. I replaced my routines with ippsDeinterleave_16s and ippsInterleave_16s. I found ippsDeinterleave_16s to be very slow. It's about 3 times slower than the separateStereo routine I posted and more than 10x slower than ippsInterleave_16s. Have you seen this? Any ideas?&lt;/P&gt;&lt;P&gt;My test program just interleaves/deinterleaves blank memory allocated using ippsMalloc_16s.&lt;/P&gt;&lt;P&gt;I'm using Package ID: w_ipp_ia32_p_5.0.023&lt;/P&gt;&lt;P&gt;Brian&lt;/P&gt;</description>
      <pubDate>Sat, 06 May 2006 07:54:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929113#M16471</guid>
      <dc:creator>brian_barber</dc:creator>
      <dc:date>2006-05-06T07:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: ippsResamplePolyphase</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929114#M16472</link>
      <description>Brian,&lt;BR /&gt;&lt;BR /&gt;It's not uncommon -though a bit incorrect- to treat an interleaved stereo signal as a mono signal of twice the frequency and resample that. This might help you in speed and maybe in a signal that is accoustically acceptible for your use.&lt;BR /&gt;&lt;BR /&gt;Hope this helps&lt;BR /&gt;Hendrik</description>
      <pubDate>Mon, 08 May 2006 20:15:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929114#M16472</guid>
      <dc:creator>klend</dc:creator>
      <dc:date>2006-05-08T20:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: ippsResamplePolyphase</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929115#M16473</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;
&lt;P&gt;Hello Brian,&lt;/P&gt;
&lt;P&gt;when you are talking about performance it is also important to notice what operating system and hardware platform was used. Well, I've looked at performance data we provide with IPP (please find them in IPP	oolsperfsysdata folder) and found that there was a performance issue in IPP v5.0 for T7 libraries (P4 SSE3specific code). As you can see, ippsDeinterleave_16sW7 code (P4, SSE2 specific code) takes 1.4 cpu clock per element for 2048 elements array but T7 code take 12 clock per element. This issue was fixed in IPP v5.1 (0.99 clock per element for T7 code) so I recommend you to renew IPP libraries. We are constantly work on improvement of both functionality and performance.&lt;/P&gt;
&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;</description>
      <pubDate>Sat, 13 May 2006 02:11:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929115#M16473</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2006-05-13T02:11:47Z</dc:date>
    </item>
    <item>
      <title>Re: ippsResamplePolyphase</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929116#M16474</link>
      <description>&lt;DIV&gt;I'll give it a shot.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;Thanks&lt;/DIV&gt;</description>
      <pubDate>Sat, 13 May 2006 02:52:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/ippsResamplePolyphase/m-p/929116#M16474</guid>
      <dc:creator>brian_barber</dc:creator>
      <dc:date>2006-05-13T02:52:03Z</dc:date>
    </item>
  </channel>
</rss>

