<?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: Bug in IppiFilterRow ??? in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-IppiFilterRow/m-p/990055#M22189</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Has this problem been resolved? I have try the same way using ippiFilterRow_32f_C1R (kernel size 7) and got ippStsStepErr(-14), which means 'Step value is not valid'.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Using IPP 6.1.1.035.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;I2R D&amp;amp;T Team&lt;/P&gt;</description>
    <pubDate>Wed, 24 Feb 2010 07:54:20 GMT</pubDate>
    <dc:creator>I2R_D_T_Team</dc:creator>
    <dc:date>2010-02-24T07:54:20Z</dc:date>
    <item>
      <title>Bug in IppiFilterRow ???</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-IppiFilterRow/m-p/990053#M22187</link>
      <description>Hi there!&lt;BR /&gt;I tried to implement a filter function with IppiFilterRow and I figured out that there is something wrong (if I used it correctly):&lt;BR /&gt;&lt;BR /&gt;I use Visual C++ 6.0 with Windows XP and the evaluation Version of IPP. I have the following source code:&lt;BR /&gt;&lt;BR /&gt;int Width = 7;&lt;BR /&gt;int Height = 7;&lt;BR /&gt;int BorderStepWidth=0;&lt;BR /&gt;int FilStepWidth = 0;&lt;BR /&gt;int length=3;&lt;BR /&gt;			&lt;BR /&gt;// Image with border...&lt;BR /&gt;Ipp32f *lp_BorderImg = ippiMalloc_32f_C1( Width+2*(length-1)/2, Height, &amp;amp;BorderStepWidth );	&lt;BR /&gt;Ipp32f *lp_FilResult = ippiMalloc_32f_C1( Width, Height, &amp;amp;FilStepWidth );	&lt;BR /&gt;&lt;BR /&gt;float *kernel = new float[length];&lt;BR /&gt;kernel[0]=0.5;&lt;BR /&gt;kernel[1]=0;&lt;BR /&gt;kernel[2]=-0.5;&lt;BR /&gt;&lt;BR /&gt;IppiSize Size;&lt;BR /&gt;Size.width = Width;&lt;BR /&gt;Size.height = Height;&lt;BR /&gt;&lt;BR /&gt;IppStatus l_Status = ippiFilterRow_32f_C1R( &amp;amp;(lp_BorderImg[(length-1)/2]),&lt;BR /&gt;BorderStepWidth, &lt;BR /&gt;lp_FilResult,&lt;BR /&gt;FilStepWidth, &lt;BR /&gt;Size,&lt;BR /&gt;kernel,&lt;BR /&gt;length, &lt;BR /&gt;(length-1)/2 ); &lt;BR /&gt;&lt;BR /&gt;if( ippStsNoErr != l_Status ){&lt;BR /&gt; std::cerr &amp;lt;&amp;lt; "FilteredImage: " &amp;lt;&amp;lt;   ippCoreGetStatusString(l_Status) &amp;lt;&amp;lt; std::endl;&lt;BR /&gt;}&lt;BR /&gt;	&lt;BR /&gt;ippiFree( lp_FilResult );&lt;BR /&gt;ippiFree( lp_BorderImg );&lt;BR /&gt;&lt;BR /&gt;when I let this code run I get the following debug information (in Debug modus with multithreaded DLL on):&lt;BR /&gt;&lt;BR /&gt;User breakpoint at NTDLL! 77f65a58()&lt;BR /&gt;&lt;BR /&gt;When I go further then I get the following trace:&lt;BR /&gt;&lt;BR /&gt; NTDLL! 77f65a58()&lt;BR /&gt; NTDLL! 77f8e139()&lt;BR /&gt; NTDLL! 77f75010()&lt;BR /&gt; NTDLL! 77f48b37()&lt;BR /&gt; IPPIA6! 00d014fe()&lt;BR /&gt; IPPIA6! 00ca08d0()&lt;BR /&gt; mainCRTStartup()&lt;BR /&gt;which is a sign that there is something wrong. I only get these messages at a Width and Heigth of 7 or 5 ( I havent checked all )... &lt;BR /&gt;&lt;BR /&gt;What did I do wrong? Or is there a bug in IppiFilterRow (notice that the same with ippiFilterColumn (with start pointer adapted to column filtering)- everything seems alright),&lt;BR /&gt;Thanks in advance,&lt;BR /&gt;Stefan Hinterstoisser</description>
      <pubDate>Mon, 30 May 2005 23:32:51 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-IppiFilterRow/m-p/990053#M22187</guid>
      <dc:creator>supersteveee</dc:creator>
      <dc:date>2005-05-30T23:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in IppiFilterRow ???</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-IppiFilterRow/m-p/990054#M22188</link>
      <description>&lt;DIV&gt;Dear Customer,&lt;BR /&gt;&lt;BR /&gt;Please submit this issue via Intel Premier Support where product support staff will provide further assistance on this issue.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Ying S&lt;BR /&gt;Intel Corp.&lt;/DIV&gt;</description>
      <pubDate>Thu, 02 Jun 2005 13:19:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-IppiFilterRow/m-p/990054#M22188</guid>
      <dc:creator>Ying_S_Intel</dc:creator>
      <dc:date>2005-06-02T13:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in IppiFilterRow ???</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-IppiFilterRow/m-p/990055#M22189</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Has this problem been resolved? I have try the same way using ippiFilterRow_32f_C1R (kernel size 7) and got ippStsStepErr(-14), which means 'Step value is not valid'.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Using IPP 6.1.1.035.&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;I2R D&amp;amp;T Team&lt;/P&gt;</description>
      <pubDate>Wed, 24 Feb 2010 07:54:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-IppiFilterRow/m-p/990055#M22189</guid>
      <dc:creator>I2R_D_T_Team</dc:creator>
      <dc:date>2010-02-24T07:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Bug in IppiFilterRow ???</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-IppiFilterRow/m-p/990056#M22190</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;There was a very old issue with ippiFilterRow_32f_C1R with small images (width &amp;lt; 16) . This was fixed since IPP 5.0 release. Is there any code that can show your problem?&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Chao&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2010 08:23:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-in-IppiFilterRow/m-p/990056#M22190</guid>
      <dc:creator>Chao_Y_Intel</dc:creator>
      <dc:date>2010-02-25T08:23:25Z</dc:date>
    </item>
  </channel>
</rss>

