<?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: Get exception from ippiFilterGaussianBorder_8u_C1R function in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Get-exception-from-ippiFilterGaussianBorder-8u-C1R-function/m-p/1213054#M27421</link>
    <description>&lt;P&gt;&lt;SPAN&gt;I used IPP lib, as you can refer to the pseudo code below:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;----------------------------------&lt;/P&gt;
&lt;P&gt;unsigned char* src_head = 0, *dst_head = 0;&lt;BR /&gt;int flag,bufSize = 0,specSize = 0;&lt;BR /&gt;IppiSize IPPRoiSize = { 0, 0 };&lt;BR /&gt;unsigned int kernelSize = 3;&lt;BR /&gt;unsigned char* buffer = 0;&lt;BR /&gt;IppFilterGaussianSpec* pSpec = NULL;&lt;/P&gt;
&lt;P&gt;IPPRoiSize.width = 4082;&lt;/P&gt;
&lt;P&gt;IPPRoiSize.height = 594;&lt;/P&gt;
&lt;P&gt;flag = ippiFilterGaussianGetBufferSize(IPPRoiSize, kernelSize, ipp8u, 1, &amp;amp;specSize, &amp;amp;bufSize);&lt;BR /&gt;pSpec = (IppFilterGaussianSpec*)malloc(specSize);&lt;BR /&gt;buffer = malloc(bufSize);&lt;/P&gt;
&lt;P&gt;flag = ippiFilterGaussianInit(IPPRoiSize, kernelSize, 3.0f, ippBorderMirror, ipp8u, 1, pSpec, buffer);&lt;/P&gt;
&lt;P&gt;src_head = head of src image;&lt;BR /&gt;dst_head = head of dst image;&lt;/P&gt;
&lt;P&gt;flag = ippiFilterGaussianBorder_8u_C1R(src_head, 4082, dst_head, 4082, IPPRoiSize, 0, pSpec, buffer);&lt;/P&gt;</description>
    <pubDate>Mon, 28 Sep 2020 07:56:13 GMT</pubDate>
    <dc:creator>KimT</dc:creator>
    <dc:date>2020-09-28T07:56:13Z</dc:date>
    <item>
      <title>Get exception from ippiFilterGaussianBorder_8u_C1R function</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Get-exception-from-ippiFilterGaussianBorder-8u-C1R-function/m-p/1213044#M27419</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;
&lt;P&gt;when I used GaussianBorder function always get exception&amp;nbsp;thrown at some image size.&lt;/P&gt;
&lt;P&gt;image : 594x4082(h*w)&lt;/P&gt;
&lt;P&gt;kernelSize:3&lt;/P&gt;
&lt;P&gt;maxRoiSize:594x4082&lt;/P&gt;
&lt;P&gt;compile_mode:debug_X64&lt;/P&gt;
&lt;P&gt;IPP version:2020.2.254&lt;/P&gt;
&lt;P&gt;exception information:&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Exception thrown at 0x00007FF6B64765A0 in xxx.exe: 0xC0000005: Access violation reading location 0x000001CFAE3B6000.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 07:24:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Get-exception-from-ippiFilterGaussianBorder-8u-C1R-function/m-p/1213044#M27419</guid>
      <dc:creator>KimT</dc:creator>
      <dc:date>2020-09-28T07:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Get exception from ippiFilterGaussianBorder_8u_C1R function</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Get-exception-from-ippiFilterGaussianBorder-8u-C1R-function/m-p/1213046#M27420</link>
      <description>&lt;P&gt;Could you give us the example of the code which we could compile and execute on our end with the latest version of IPP?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 07:33:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Get-exception-from-ippiFilterGaussianBorder-8u-C1R-function/m-p/1213046#M27420</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-09-28T07:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: Get exception from ippiFilterGaussianBorder_8u_C1R function</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Get-exception-from-ippiFilterGaussianBorder-8u-C1R-function/m-p/1213054#M27421</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I used IPP lib, as you can refer to the pseudo code below:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;----------------------------------&lt;/P&gt;
&lt;P&gt;unsigned char* src_head = 0, *dst_head = 0;&lt;BR /&gt;int flag,bufSize = 0,specSize = 0;&lt;BR /&gt;IppiSize IPPRoiSize = { 0, 0 };&lt;BR /&gt;unsigned int kernelSize = 3;&lt;BR /&gt;unsigned char* buffer = 0;&lt;BR /&gt;IppFilterGaussianSpec* pSpec = NULL;&lt;/P&gt;
&lt;P&gt;IPPRoiSize.width = 4082;&lt;/P&gt;
&lt;P&gt;IPPRoiSize.height = 594;&lt;/P&gt;
&lt;P&gt;flag = ippiFilterGaussianGetBufferSize(IPPRoiSize, kernelSize, ipp8u, 1, &amp;amp;specSize, &amp;amp;bufSize);&lt;BR /&gt;pSpec = (IppFilterGaussianSpec*)malloc(specSize);&lt;BR /&gt;buffer = malloc(bufSize);&lt;/P&gt;
&lt;P&gt;flag = ippiFilterGaussianInit(IPPRoiSize, kernelSize, 3.0f, ippBorderMirror, ipp8u, 1, pSpec, buffer);&lt;/P&gt;
&lt;P&gt;src_head = head of src image;&lt;BR /&gt;dst_head = head of dst image;&lt;/P&gt;
&lt;P&gt;flag = ippiFilterGaussianBorder_8u_C1R(src_head, 4082, dst_head, 4082, IPPRoiSize, 0, pSpec, buffer);&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 07:56:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Get-exception-from-ippiFilterGaussianBorder-8u-C1R-function/m-p/1213054#M27421</guid>
      <dc:creator>KimT</dc:creator>
      <dc:date>2020-09-28T07:56:13Z</dc:date>
    </item>
    <item>
      <title>Re: Get exception from ippiFilterGaussianBorder_8u_C1R function</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Get-exception-from-ippiFilterGaussianBorder-8u-C1R-function/m-p/1213100#M27422</link>
      <description>&lt;P&gt;I see no problem on my end.&lt;/P&gt;
&lt;P&gt;AVX2 bases system. static linking, sequential.&lt;/P&gt;
&lt;P&gt;here is the output:&lt;/P&gt;
&lt;P&gt;&amp;gt;_stat_single.exe&lt;BR /&gt;========================================================================&lt;BR /&gt;version of IPP is: ippIP AVX2 (l9) 2020.0.2 (r0xbb6c2c1d) 2020.0.2.-1150538723&lt;BR /&gt;========================================================================&lt;BR /&gt;...ippiFilterGaussianGetBufferSize / status = ippStsNoErr: No errors&lt;BR /&gt;...ippiFilterGaussianInit / status = ippStsNoErr: No errors&lt;BR /&gt;#1...ippiSet_8u_C1R SRC... / status = ippStsNoErr: No errors&lt;BR /&gt;#2...ippiSet_8u_C1R DST... / status = ippStsNoErr: No errors&lt;BR /&gt;...ippiFilterGaussianBorder_8u_C1R / status = ippStsNoErr: No errors&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 11:10:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Get-exception-from-ippiFilterGaussianBorder-8u-C1R-function/m-p/1213100#M27422</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-09-28T11:10:25Z</dc:date>
    </item>
    <item>
      <title>Re:Get exception from ippiFilterGaussianBorder_8u_C1R function</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Get-exception-from-ippiFilterGaussianBorder-8u-C1R-function/m-p/1222076#M27455</link>
      <description>&lt;P&gt;The issue is closing and we will no longer respond to this thread.&amp;nbsp;If you require additional assistance from Intel, please start a new thread.&amp;nbsp;Any further interaction in this thread will be considered community only.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 23 Oct 2020 03:55:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Get-exception-from-ippiFilterGaussianBorder-8u-C1R-function/m-p/1222076#M27455</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2020-10-23T03:55:08Z</dc:date>
    </item>
  </channel>
</rss>

