<?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 report: ippiFilterBoxBorder_32f_C1R in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1521182#M28516</link>
    <description>&lt;P&gt;Hi Roy,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for your patience.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regarding the issue mentioned, It is an artifact of the type of optimization used, and the default values that control this seem reasonably set keeping these residues vary small. In addition, if you cannot take these patterns of residuals, it is advised to use a different filter and set all coefficients in the filter kernel to 1.&amp;nbsp;This is functionally equivalent to a box filter.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;It is a specific optimization process with default settings that aims to minimize certain residues or errors. If this is causing a blocker, it is advised to use a different filter by setting all its coefficients to 1, which is functionally the same as using a box filter.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Kindly let us know if you have any concerns.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
    <pubDate>Wed, 06 Sep 2023 16:40:43 GMT</pubDate>
    <dc:creator>ShanmukhS_Intel</dc:creator>
    <dc:date>2023-09-06T16:40:43Z</dc:date>
    <item>
      <title>Bug report: ippiFilterBoxBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1462100#M28304</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;we encountered a problem with box filtering of float images.&lt;BR /&gt;If the image only has relevant image content in the middle and is otherwise 0, there are errors on the right and bottom, which are probably caused by the update process.&lt;BR /&gt;The filter response should also be 0 in these areas.&lt;BR /&gt;The problem causes subsequent errors in our applications with natural images.&lt;/P&gt;
&lt;P&gt;The problem can be reproduced with the following sample code:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;void main()
{
	// Boxfilter auf float-Bildern
	IppiSize maskSize = { 55, 55 };
	IppiSize imageSize = { 1000, 1000 };
	Ipp32f* psrc=nullptr;
	Ipp32f* pDst = nullptr;
	Ipp8u* pBuffer = nullptr;
	int len = imageSize.height * imageSize.width;

	// Create and fill source image
	psrc=ippsMalloc_32f(len);
	ippsZero_32f(pSrc, len);

	IppiRect fillArea = { 400, 400, 200, 200 };
	Ipp32f fillValue(1000.67);

	for (int y = fillArea.y; y &amp;lt;= fillArea.y + fillArea.height; y++)
	{
		ippsSet_32f(fillValue, pSrc + y * imageSize.height + fillArea.x, fillArea.width);
	}

	// Create dest image
	pDst = ippsMalloc_32f(len);

	// Get work buffer size
	int bufSize(0);
	if (ippiFilterBoxBorderGetBufferSize(imageSize, maskSize, ipp32f, 1, &amp;amp;bufSize))
		throw("Init failed");

	pBuffer = ippsMalloc_8u(bufSize);

	// Filter the image
	Ipp32f borderValue(0);
	int lineStep = sizeof(Ipp32f) * imageSize.width;
	if (ippiFilterBoxBorder_32f_C1R(pSrc, lineStep, pDst, lineStep, imageSize, maskSize, ippBorderRepl, &amp;amp;borderValue, pBuffer))
		throw("Filter failed");

	if (pBuffer) ippsFree(pBuffer);
	if (pSrc) ippsFree(pSrc);
	if (pDst) ippsFree(pDst);
}
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Result for l9 scaled with maximum 1e-5 (Name: ippIP AVX2 (l9), version: 2021.7 (r0xa954907f), build date: Nov 4 2022, cpu: l9):&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BoxfilterProbleml9.png" style="width: 933px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/38658i47CDD9D958199030/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="BoxfilterProbleml9.png" alt="BoxfilterProbleml9.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Result for k0 scaled with maximum 1e-5 (Name: ippIP AVX-512F/CD/BW/DQ/VL (k0), version: 2021.7 (r0xa954907f), build date: Nov 4 2022, cpu: k0):&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BoxfilterProblemk0.png" style="width: 999px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/38659iB7BD8E893DE0D9ED/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="BoxfilterProblemk0.png" alt="BoxfilterProblemk0.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;We have same results with versions 2020.0.1 and 2021.7.&lt;/P&gt;
&lt;P&gt;Kind regards, Roy&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 08:49:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1462100#M28304</guid>
      <dc:creator>Rg66</dc:creator>
      <dc:date>2023-03-06T08:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report: ippiFilterBoxBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1462708#M28306</link>
      <description>&lt;P&gt;Hi Roy,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for posting on Intel Communities.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have tried running the sample code. However, we couldn't see any output images.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please get back to us with more details like the environment being used (OS version, IDE, etc.), If Visual Studio IDE is been used, could you please share with us the project file? It helps us reproduce the issue at our end and assist you further.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Shanmukh.SS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 09:39:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1462708#M28306</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-03-08T09:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report: ippiFilterBoxBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1463167#M28307</link>
      <description>&lt;P&gt;Hi Shanmukh,&lt;/P&gt;
&lt;P&gt;Thank you for your quick answer.&lt;/P&gt;
&lt;P&gt;There is a typo in my example:&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &lt;EM&gt;psrc&lt;/EM&gt;&amp;nbsp;should be&amp;nbsp;&lt;EM&gt;pSrc&lt;/EM&gt;&lt;BR /&gt;Your compiler should have noticed that.&lt;/P&gt;
&lt;P&gt;The source image is &lt;EM&gt;pSrc&lt;/EM&gt; and contains a rectangle in the center of the image.&lt;BR /&gt;The target image is &lt;EM&gt;pDst&lt;/EM&gt; and contains the filter response.&lt;BR /&gt;I can't provide our image viewer, but I would have expected you to be able to view the images or analyze them with debugger tools.&lt;/P&gt;
&lt;P&gt;We use Windows 10 Pro and Windows 11 Pro. The problem occurs in all OS.&lt;/P&gt;
&lt;P&gt;The development is done with VisualStudio:&lt;/P&gt;
&lt;P&gt;Microsoft Visual Studio Professional 2019&lt;BR /&gt;Version 16.9.6&lt;BR /&gt;VisualStudio.16.Release/16.9.6+31313.79&lt;BR /&gt;Microsoft .NET Framework&lt;BR /&gt;Version 4.8.09032&lt;/P&gt;
&lt;P&gt;Installed Version: Professional&lt;/P&gt;
&lt;P&gt;Visual C++ 2019 00435-30011-32800-AA708&lt;BR /&gt;Microsoft Visual C++ 2019&lt;/P&gt;
&lt;P&gt;Kind regards, Roy&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Mar 2023 08:23:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1463167#M28307</guid>
      <dc:creator>Rg66</dc:creator>
      <dc:date>2023-03-08T08:23:15Z</dc:date>
    </item>
    <item>
      <title>Re:Bug report: ippiFilterBoxBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1463223#M28309</link>
      <description>&lt;P&gt;Hi Roy,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;There is a typo in my example:&amp;nbsp;&amp;nbsp;psrc should be pSrc Your compiler should have noticed that.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt; Yeah, during the initial run we faced this compilation error and updated the psrc with pSrc to get the error resolved.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;I can't provide our image viewer, but I would have expected you to be able to view the images or analyze them with debugger tools.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt; We have executed the code and could see a blank output. Hence, it would be an immense help if you share with us the steps to generate those images as it helps us reproduce the same and escalate to the relevant team.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 08 Mar 2023 11:22:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1463223#M28309</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-03-08T11:22:39Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report: ippiFilterBoxBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1463635#M28312</link>
      <description>&lt;P&gt;Hi Shanmukh,&lt;/P&gt;
&lt;P&gt;I have created the image views again with marking of the relevant areas.&lt;/P&gt;
&lt;P&gt;The source image pSrc is created and filled in lines 11 to 21. This image looks like this:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MarkedSrcImage.png" style="width: 711px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/38844iFC614E2AB1F45F4E/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="MarkedSrcImage.png" alt="MarkedSrcImage.png" /&gt;&lt;/span&gt;&lt;BR /&gt;After filtering I get the following image (This looks ok &lt;STRONG&gt;without scaling&lt;/STRONG&gt;&lt;LI-EMOJI id="lia_disappointed-face" title=":disappointed_face:"&gt;&lt;/LI-EMOJI&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MarkedDstImage.png" style="width: 711px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/38846i4ABDDF7FA6AA1531/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="MarkedDstImage.png" alt="MarkedDstImage.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;STRONG&gt;With scaling&lt;/STRONG&gt;, however, you can see stripes outside of the expected filter response (in this picture for k0):&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MarkedDstImageScaled.png" style="width: 711px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/38847iCF6E35E97BC5E5CC/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="MarkedDstImageScaled.png" alt="MarkedDstImageScaled.png" /&gt;&lt;/span&gt;&lt;BR /&gt;At l9, the stripes below and to the right of the valid filter response are even larger (see first image of the original query).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards,&lt;/P&gt;
&lt;P&gt;Roy&lt;/P&gt;</description>
      <pubDate>Thu, 09 Mar 2023 07:47:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1463635#M28312</guid>
      <dc:creator>Rg66</dc:creator>
      <dc:date>2023-03-09T07:47:17Z</dc:date>
    </item>
    <item>
      <title>Re:Bug report: ippiFilterBoxBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1466579#M28325</link>
      <description>&lt;P&gt;Hi Roy,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for sharing the images. We are discussing your issue internally. We will get back to you with an update soon.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 16 Mar 2023 13:32:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1466579#M28325</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-03-16T13:32:54Z</dc:date>
    </item>
    <item>
      <title>Re:Bug report: ippiFilterBoxBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1469013#M28335</link>
      <description>&lt;P&gt;Hi Roy,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Our team is discussing your issue internally. We will inform you as soon as we have an update from the relevant team. Regrets for the delay in response.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 23 Mar 2023 12:36:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1469013#M28335</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-03-23T12:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report: ippiFilterBoxBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1471796#M28340</link>
      <description>&lt;P&gt;Hi Roy,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is to kindly inform you that we are able to reproduce your issue, we have shared your issue with the concerned team and they are looking into the same internally. We will inform you as soon as we have an update from the relevant team. Regrets for the delay in response.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Shanmukh.SS&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2023 18:46:41 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1471796#M28340</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-08-10T18:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Bug report: ippiFilterBoxBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1477356#M28359</link>
      <description>&lt;P&gt;Hi Shanmukh,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there any news on this subject?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kind regards, Roy&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 07:03:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1477356#M28359</guid>
      <dc:creator>Rg66</dc:creator>
      <dc:date>2023-04-17T07:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Re:Bug report: ippiFilterBoxBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1489112#M28415</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Shanmukh,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;is it still possible to get an answer?&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Kind regards, Roy&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 May 2023 07:16:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1489112#M28415</guid>
      <dc:creator>Rg66</dc:creator>
      <dc:date>2023-05-24T07:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: Bug report: ippiFilterBoxBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1498516#M28442</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;is there any information about our problem?&lt;/P&gt;&lt;P&gt;Kind regards, Roy&lt;/P&gt;</description>
      <pubDate>Fri, 23 Jun 2023 09:34:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1498516#M28442</guid>
      <dc:creator>Rg66</dc:creator>
      <dc:date>2023-06-23T09:34:48Z</dc:date>
    </item>
    <item>
      <title>Re:Bug report: ippiFilterBoxBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1513015#M28481</link>
      <description>&lt;P&gt;Hi Roy,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Our team is looking into your issue internally based on various other factors that cause this impact. We will get back to you as soon as we have an update from the concerned team. Thank you for your patience and regret the delay in response.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 10 Aug 2023 18:48:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1513015#M28481</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-08-10T18:48:49Z</dc:date>
    </item>
    <item>
      <title>Re:Bug report: ippiFilterBoxBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1521182#M28516</link>
      <description>&lt;P&gt;Hi Roy,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for your patience.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Regarding the issue mentioned, It is an artifact of the type of optimization used, and the default values that control this seem reasonably set keeping these residues vary small. In addition, if you cannot take these patterns of residuals, it is advised to use a different filter and set all coefficients in the filter kernel to 1.&amp;nbsp;This is functionally equivalent to a box filter.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;It is a specific optimization process with default settings that aims to minimize certain residues or errors. If this is causing a blocker, it is advised to use a different filter by setting all its coefficients to 1, which is functionally the same as using a box filter.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Kindly let us know if you have any concerns.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 06 Sep 2023 16:40:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1521182#M28516</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-09-06T16:40:43Z</dc:date>
    </item>
    <item>
      <title>Re:Bug report: ippiFilterBoxBorder_32f_C1R</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1523724#M28526</link>
      <description>&lt;P&gt;Hi Roy,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;A gentle reminder:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Has the information provided helped? Could you please let us know if you need any other information?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shanmukh.SS&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 14 Sep 2023 13:45:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Bug-report-ippiFilterBoxBorder-32f-C1R/m-p/1523724#M28526</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-09-14T13:45:38Z</dc:date>
    </item>
  </channel>
</rss>

