<?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 Is there an IPP function for this 3-rd interpolation function? in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Is-there-an-IPP-function-for-this-3-rd-interpolation-function/m-p/802631#M3392</link>
    <description>This is a standard 3rd order itnerpolation:&lt;BR /&gt;&lt;P&gt;for (int iy=-2; iy&amp;lt;=3; iy++) {&lt;/P&gt;&lt;P&gt;y_coeff = interp_coef_y[iy+2];&lt;/P&gt;&lt;P&gt;x_interp_value = coefx0*pf[index_signal_start + 0] +&lt;/P&gt;&lt;P&gt;coefx1*pf[index_signal_start+1] +&lt;/P&gt;&lt;P&gt;coefx2*pf[index_signal_start+2] +&lt;/P&gt;&lt;P&gt;coefx3*pf[index_signal_start+3] +&lt;/P&gt;&lt;P&gt;coefx4*pf[index_signal_start+4] +&lt;/P&gt;&lt;P&gt;coefx5*pf[index_signal_start+5];&lt;/P&gt;&lt;P&gt;signal_value3 += y_coeff*x_interp_value;&lt;/P&gt;&lt;P&gt;index_signal_start += nx;&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;&lt;BR /&gt;Is there an IPP function for this?&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Fri, 11 Feb 2011 17:05:19 GMT</pubDate>
    <dc:creator>missing__zlw</dc:creator>
    <dc:date>2011-02-11T17:05:19Z</dc:date>
    <item>
      <title>Is there an IPP function for this 3-rd interpolation function?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Is-there-an-IPP-function-for-this-3-rd-interpolation-function/m-p/802631#M3392</link>
      <description>This is a standard 3rd order itnerpolation:&lt;BR /&gt;&lt;P&gt;for (int iy=-2; iy&amp;lt;=3; iy++) {&lt;/P&gt;&lt;P&gt;y_coeff = interp_coef_y[iy+2];&lt;/P&gt;&lt;P&gt;x_interp_value = coefx0*pf[index_signal_start + 0] +&lt;/P&gt;&lt;P&gt;coefx1*pf[index_signal_start+1] +&lt;/P&gt;&lt;P&gt;coefx2*pf[index_signal_start+2] +&lt;/P&gt;&lt;P&gt;coefx3*pf[index_signal_start+3] +&lt;/P&gt;&lt;P&gt;coefx4*pf[index_signal_start+4] +&lt;/P&gt;&lt;P&gt;coefx5*pf[index_signal_start+5];&lt;/P&gt;&lt;P&gt;signal_value3 += y_coeff*x_interp_value;&lt;/P&gt;&lt;P&gt;index_signal_start += nx;&lt;/P&gt;&lt;P&gt;}&lt;BR /&gt;&lt;BR /&gt;Is there an IPP function for this?&lt;BR /&gt;&lt;BR /&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 11 Feb 2011 17:05:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Is-there-an-IPP-function-for-this-3-rd-interpolation-function/m-p/802631#M3392</guid>
      <dc:creator>missing__zlw</dc:creator>
      <dc:date>2011-02-11T17:05:19Z</dc:date>
    </item>
    <item>
      <title>Is there an IPP function for this 3-rd interpolation function?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Is-there-an-IPP-function-for-this-3-rd-interpolation-function/m-p/802632#M3393</link>
      <description>Your "x_interp_value = ..." statement should be handled nicely by the DotProduct function:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://software.intel.com/sites/products/documentation/hpc/composerxe/en-us/ippxe/ipp_manual_lnx/hh_goto.htm#IPPM/ippm_ch4/functn_DotProduct.htm"&gt;http://software.intel.com/sites/products/documentation/hpc/composerxe/en-us/ippxe/ipp_manual_lnx/hh_goto.htm#IPPM/ippm_ch4/functn_DotProduct.htm&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;since you are essentially just multiplying two vectors together. One vector is contained in pf[] and the other is your list of coefficients (coefx0-5). With such a small vector you may not see much benefit from using an IPP function, due to the call overhead; but if the vectors are longer or you are doing large numbers of them, there may be an advantage.</description>
      <pubDate>Sat, 12 Feb 2011 00:27:32 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Is-there-an-IPP-function-for-this-3-rd-interpolation-function/m-p/802632#M3393</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2011-02-12T00:27:32Z</dc:date>
    </item>
  </channel>
</rss>

