<?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 Deprecated in place functions in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Deprecated-in-place-functions/m-p/944923#M18031</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I'm have been using IPP for many years. Recently I have upgraded from v6.0 to v8.0, and now I have to deal with the deprecation issue announced in v7.1.&lt;/P&gt;

&lt;P&gt;My problem is with the deprecated in place functions (Mainly in "ipps" but also in "Ippi"). It is unclear (I have searched for a long time) if it is safe (In terms of result correctness)&amp;nbsp;to replace a deprecated&amp;nbsp;in place function with an out of place function. The problem is that destination buffer is same as one of the source buffers so writing to the output while performing calculations maybe unsafe (In terms of result correctness).&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Can any one help me with this? I need to replace a lot of code and I need to know if it is safe to replace an in place function with an out of place or do I have to write results into a different buffer?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 24 Dec 2013 09:58:24 GMT</pubDate>
    <dc:creator>Aviv_N_</dc:creator>
    <dc:date>2013-12-24T09:58:24Z</dc:date>
    <item>
      <title>Deprecated in place functions</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Deprecated-in-place-functions/m-p/944923#M18031</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I'm have been using IPP for many years. Recently I have upgraded from v6.0 to v8.0, and now I have to deal with the deprecation issue announced in v7.1.&lt;/P&gt;

&lt;P&gt;My problem is with the deprecated in place functions (Mainly in "ipps" but also in "Ippi"). It is unclear (I have searched for a long time) if it is safe (In terms of result correctness)&amp;nbsp;to replace a deprecated&amp;nbsp;in place function with an out of place function. The problem is that destination buffer is same as one of the source buffers so writing to the output while performing calculations maybe unsafe (In terms of result correctness).&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Can any one help me with this? I need to replace a lot of code and I need to know if it is safe to replace an in place function with an out of place or do I have to write results into a different buffer?&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Dec 2013 09:58:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Deprecated-in-place-functions/m-p/944923#M18031</guid>
      <dc:creator>Aviv_N_</dc:creator>
      <dc:date>2013-12-24T09:58:24Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Deprecated-in-place-functions/m-p/944924#M18032</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;in IPP 8.1 (will be available on the web on ww06 2014) deprecation message removed from all ipps in-place functionality (based on customers' feedback). The same&amp;nbsp;is planned&amp;nbsp;be done for ippi domain in the nearest future.&lt;/P&gt;

&lt;P&gt;regards, Igor&lt;/P&gt;</description>
      <pubDate>Tue, 24 Dec 2013 13:19:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Deprecated-in-place-functions/m-p/944924#M18032</guid>
      <dc:creator>Igor_A_Intel</dc:creator>
      <dc:date>2013-12-24T13:19:33Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Deprecated-in-place-functions/m-p/944925#M18033</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;It's always good to know if an inplace function is less efficient than non-inplace. maybe the option of having a compilation warning if a more efficient option or flavour is available.&lt;/P&gt;</description>
      <pubDate>Sun, 29 Dec 2013 10:20:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Deprecated-in-place-functions/m-p/944925#M18033</guid>
      <dc:creator>Simon_B_</dc:creator>
      <dc:date>2013-12-29T10:20:57Z</dc:date>
    </item>
    <item>
      <title>Hi Simon,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Deprecated-in-place-functions/m-p/944926#M18034</link>
      <description>&lt;P&gt;Hi Simon,&lt;/P&gt;

&lt;P&gt;it's difficult to say which version is more efficient - its always depends on a pipeline where some particular function is used. For simple pixel-wise operations (that don't require some pixel neighborhood) in most cases and sizes that fit into cache it doesn't matter&amp;nbsp;either it is&amp;nbsp;in-place operation. or out-of-place. If size is rather big and src+dst size is greater than L3 cache - I guess it's clear that in-place operation will be faster. For rather complex operations that require pixel neighborhood (for example any filtering operation) - the in-place operation can be implemented only via additional internal temporal buffer - so for sizes less than cache size in-place operation may be slower than out-of-place. So it depends on many factors, on particular pipeline and decision can't be done statically at compilation stage.&lt;/P&gt;

&lt;P&gt;regards, Igor&lt;/P&gt;</description>
      <pubDate>Wed, 15 Jan 2014 11:00:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Deprecated-in-place-functions/m-p/944926#M18034</guid>
      <dc:creator>Igor_A_Intel</dc:creator>
      <dc:date>2014-01-15T11:00:31Z</dc:date>
    </item>
  </channel>
</rss>

