<?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 Access violation in ippiWarpBilinear in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177905#M27090</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am getting access violations in&amp;nbsp;ippiWarpBilinear_8u_C1R when run on certain inputs. I am currently testing this with IPP 2018 - Initial Release.&lt;/P&gt;&lt;P&gt;I have boiled it&amp;nbsp;down to this&amp;nbsp;minimal example:&lt;/P&gt;
&lt;PRE class="brush:cpp; class-name:dark; wrap-lines:false;"&gt;const auto srcSize = IppiSize{ 8439, 54 };
const auto srcRoi = IppiRect{ 2577, 0, 1393, 54 };
const auto srcStep = srcSize.width;
const auto pSrc = ippsMalloc_8u(srcSize.width * srcSize.height);
if (!pSrc)
		throw std::runtime_error("Allocating src failed");

const auto dstSize = IppiSize{ 42, 1386 };
const auto dstRoi = IppiRect{ 0, 0, dstSize.width, dstSize.height };
const auto dstStep = dstSize.width;
const auto pDst = ippsMalloc_8u(dstSize.width * dstSize.height);
if (!pDst)
	throw std::runtime_error("Allocating dst failed");

const double coeffs[2][4] =
{
	{2.06479e-05, -0.00055722, -0.827145, 42.5322},
	{5.86368e-11, 0.995243, -2.34897e-06, -2563.82},
};

int bufferSize = -1;
const auto resultBufferSize = ippiWarpBilinearGetBufferSize(srcSize, srcRoi, dstRoi, ippWarpForward, coeffs, IPPI_INTER_LINEAR, &amp;amp;bufferSize);
if (resultBufferSize != ippStsNoErr)
	throw std::runtime_error("Getting buffer size failed");

const auto pBuffer = ippsMalloc_8u(bufferSize);
if (!pBuffer)
	throw std::runtime_error("Allocating buffer failed");

const auto resultWarp = ippiWarpBilinear_8u_C1R(pSrc, srcSize, srcStep, srcRoi, pDst, dstStep, dstRoi, coeffs, IPPI_INTER_LINEAR, pBuffer);
if (resultWarp != ippStsNoErr)
	throw std::runtime_error("Warp failed");&lt;/PRE&gt;

&lt;P&gt;Am I doing something wrong here?&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Troels&lt;/P&gt;</description>
    <pubDate>Fri, 05 Jul 2019 12:49:10 GMT</pubDate>
    <dc:creator>Nielsen__Troels</dc:creator>
    <dc:date>2019-07-05T12:49:10Z</dc:date>
    <item>
      <title>Access violation in ippiWarpBilinear</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177905#M27090</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am getting access violations in&amp;nbsp;ippiWarpBilinear_8u_C1R when run on certain inputs. I am currently testing this with IPP 2018 - Initial Release.&lt;/P&gt;&lt;P&gt;I have boiled it&amp;nbsp;down to this&amp;nbsp;minimal example:&lt;/P&gt;
&lt;PRE class="brush:cpp; class-name:dark; wrap-lines:false;"&gt;const auto srcSize = IppiSize{ 8439, 54 };
const auto srcRoi = IppiRect{ 2577, 0, 1393, 54 };
const auto srcStep = srcSize.width;
const auto pSrc = ippsMalloc_8u(srcSize.width * srcSize.height);
if (!pSrc)
		throw std::runtime_error("Allocating src failed");

const auto dstSize = IppiSize{ 42, 1386 };
const auto dstRoi = IppiRect{ 0, 0, dstSize.width, dstSize.height };
const auto dstStep = dstSize.width;
const auto pDst = ippsMalloc_8u(dstSize.width * dstSize.height);
if (!pDst)
	throw std::runtime_error("Allocating dst failed");

const double coeffs[2][4] =
{
	{2.06479e-05, -0.00055722, -0.827145, 42.5322},
	{5.86368e-11, 0.995243, -2.34897e-06, -2563.82},
};

int bufferSize = -1;
const auto resultBufferSize = ippiWarpBilinearGetBufferSize(srcSize, srcRoi, dstRoi, ippWarpForward, coeffs, IPPI_INTER_LINEAR, &amp;amp;bufferSize);
if (resultBufferSize != ippStsNoErr)
	throw std::runtime_error("Getting buffer size failed");

const auto pBuffer = ippsMalloc_8u(bufferSize);
if (!pBuffer)
	throw std::runtime_error("Allocating buffer failed");

const auto resultWarp = ippiWarpBilinear_8u_C1R(pSrc, srcSize, srcStep, srcRoi, pDst, dstStep, dstRoi, coeffs, IPPI_INTER_LINEAR, pBuffer);
if (resultWarp != ippStsNoErr)
	throw std::runtime_error("Warp failed");&lt;/PRE&gt;

&lt;P&gt;Am I doing something wrong here?&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;
&lt;P&gt;Troels&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2019 12:49:10 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177905#M27090</guid>
      <dc:creator>Nielsen__Troels</dc:creator>
      <dc:date>2019-07-05T12:49:10Z</dc:date>
    </item>
    <item>
      <title>Probably You wanted to set </title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177906#M27091</link>
      <description>&lt;P&gt;Probably You wanted to set&amp;nbsp; const auto dstSize = IppiSize{ 1386, 42 };&amp;nbsp; instead of&amp;nbsp; //const auto dstSize = IppiSize{ 42, 1386 };&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2019 16:34:47 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177906#M27091</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2019-07-05T16:34:47Z</dc:date>
    </item>
    <item>
      <title>Well, so long as the pointers</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177907#M27092</link>
      <description>&lt;P&gt;Well, so long as the pointers&amp;nbsp;and sizes are valid I shouldn't get an access violation, right?&lt;/P&gt;&lt;P&gt;I have run a lot of tests to further pin down the issue. It looks as if the access violation&amp;nbsp;is happening when the map is nearly affine, i.e. coeffs[0][0] and coeffs[1][0] are close to zero.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2019 10:05:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177907#M27092</guid>
      <dc:creator>Nielsen__Troels</dc:creator>
      <dc:date>2019-07-08T10:05:00Z</dc:date>
    </item>
    <item>
      <title>Is anyone looking into this?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177908#M27093</link>
      <description>&lt;P&gt;Is anyone looking into this? Can anyone replicate it?&lt;/P&gt;&lt;P&gt;Unless there is an issue with my code above, this has to be an internal bug in&amp;nbsp;ippiWarpBilinear.&lt;/P&gt;&lt;P&gt;We are currently forced to detect&amp;nbsp;coefficients that are likely to cause the access violation but in the long run this is not a viable solution for us.&lt;/P&gt;&lt;P&gt;Please advise.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 07:36:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177908#M27093</guid>
      <dc:creator>Nielsen__Troels</dc:creator>
      <dc:date>2019-07-29T07:36:12Z</dc:date>
    </item>
    <item>
      <title>Hello, Troels!</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177909#M27094</link>
      <description>&lt;P&gt;Hello, Troels!&lt;/P&gt;&lt;P&gt;Thank you for your feedback. We have investigated this issue. It's an internal bug in IPP which will be fixed in the upcoming releases.&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;Ivan Galanin.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jul 2019 07:29:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177909#M27094</guid>
      <dc:creator>Ivan_G_Intel1</dc:creator>
      <dc:date>2019-07-30T07:29:59Z</dc:date>
    </item>
    <item>
      <title>Hi Ivan,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177910#M27095</link>
      <description>&lt;P&gt;Hi Ivan,&lt;/P&gt;&lt;P&gt;I encounter the same problem when I use this warp function. I updated to the latest version but still have this error. May I know when we will get the version with the fix. Is there a short term solution to avoid this problem? Thanks.&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;Davy&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2019 05:39:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177910#M27095</guid>
      <dc:creator>Chan__Davy</dc:creator>
      <dc:date>2019-11-11T05:39:46Z</dc:date>
    </item>
    <item>
      <title>Hi, Davy!</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177911#M27096</link>
      <description>&lt;P&gt;Hi, Davy!&lt;/P&gt;&lt;P&gt;It seems that you have opened &lt;A href="https://software.intel.com/en-us/forums/intel-integrated-performance-primitives/topic/831851"&gt;another thread&lt;/A&gt;, lets discuss the topic there.&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;Ivan Galanin.&lt;/P&gt;</description>
      <pubDate>Mon, 11 Nov 2019 07:22:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177911#M27096</guid>
      <dc:creator>Ivan_G_Intel1</dc:creator>
      <dc:date>2019-11-11T07:22:09Z</dc:date>
    </item>
    <item>
      <title>Hi Davy, </title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177912#M27097</link>
      <description>&lt;P&gt;Hi Davy,&amp;nbsp;&lt;/P&gt;&lt;P&gt;The sample code which&amp;nbsp;Troels provided above works well in my site with IPP 2019 update 4. Your question might be different with this one, so let's discuss it in the new&amp;nbsp;opened&amp;nbsp;thread.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Ruqiu&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 01:54:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177912#M27097</guid>
      <dc:creator>Ruqiu_C_Intel</dc:creator>
      <dc:date>2019-11-12T01:54:00Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177913#M27098</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I just ran my test with the new version&amp;nbsp;(ippCore 2019.0.5 (r0xc95fdf5f)). Unfortunately it still fails on my system with an access violation.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Troels&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 10:20:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177913#M27098</guid>
      <dc:creator>Nielsen__Troels</dc:creator>
      <dc:date>2019-11-12T10:20:57Z</dc:date>
    </item>
    <item>
      <title>Troels,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177914#M27099</link>
      <description>&lt;P&gt;Troels,&lt;/P&gt;&lt;P&gt;I also tried the latest IPP 2019 u5 on my part ( win 10, 64 bit, static linking with multithreading libs ) and see no problem so far.&lt;/P&gt;&lt;P&gt;I added this code at the very end of this example&lt;/P&gt;&lt;P&gt;.....&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;if (resultWarp != ippStsNoErr)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;throw std::runtime_error("Warp failed");&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; const IppLibraryVersion* lib = ippsGetLibVersion();&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;printf("\t ======================================================================== \n");&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; printf("\t\t version of IPP is: &amp;nbsp; %s %s %d.%d.%d.%d\n", lib-&amp;gt;Name, lib-&amp;gt;Version,&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;lib-&amp;gt;major, lib-&amp;gt;minor, lib-&amp;gt;majorBuild, lib-&amp;gt;build);&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;printf("\t ======================================================================== \n");&lt;BR /&gt;and&amp;nbsp; here is the output I see:&lt;/P&gt;&lt;P&gt;.test.exe&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;========================================================================&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;version of IPP is: &amp;nbsp; ippSP AVX2 (l9) 2019.0.4 (r62443) 2019.0.4.62443&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;========================================================================&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 15:15:09 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177914#M27099</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2019-11-12T15:15:09Z</dc:date>
    </item>
    <item>
      <title>Could you give us the same</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177915#M27100</link>
      <description>&lt;P&gt;Could you give us the same output?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 15:15:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177915#M27100</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2019-11-12T15:15:48Z</dc:date>
    </item>
    <item>
      <title>If I build for x86 I get:</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177916#M27101</link>
      <description>&lt;P&gt;If I build for x86 I get:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;========================================================================&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;version of IPP is: &amp;nbsp;&amp;nbsp;ippSP AVX2 (h9) 2019.0.5 (r0xc95fdf5f) 2019.0.5.-916463777&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;========================================================================&lt;/P&gt;&lt;P&gt;And for x64:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;========================================================================&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;version of IPP is: &amp;nbsp;&amp;nbsp;ippSP AVX2 (l9) 2019.0.5 (r0xc95fdf5f) 2019.0.5.-916463777&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;========================================================================&lt;/P&gt;&lt;P&gt;I have attached the complete source code. I am also running Win10 64 bit. My CPU is a Core i7 4900MQ. The access violation happens in both x86 builds and x64 builds.&lt;/P&gt;&lt;P&gt;I went one step further and added an exception handler for the access violation. I have attached another version of the source code that performs a bit of address randomization and logs the relative addresses etc.&lt;/P&gt;&lt;P&gt;In x86 the access violation always occurs in&amp;nbsp;ippih9.dll at 0x00c6f8b2 when trying&amp;nbsp;to read pSrc -&amp;nbsp;5129.&amp;nbsp;&lt;BR /&gt;In x64 it is in&amp;nbsp;ippil9.dll at 0x00ecb98c when it trying to read pSrc +&amp;nbsp;36245229014254.&lt;BR /&gt;I hope this is useful&amp;nbsp;somehow.&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;Troels&lt;/P&gt;</description>
      <pubDate>Tue, 12 Nov 2019 17:35:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177916#M27101</guid>
      <dc:creator>Nielsen__Troels</dc:creator>
      <dc:date>2019-11-12T17:35:43Z</dc:date>
    </item>
    <item>
      <title>ok, we will check with IPP</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177917#M27102</link>
      <description>&lt;P&gt;ok, we will check with IPP 2019 u5 as the previous test I linked against IPP 2019 u4.&amp;nbsp;&lt;/P&gt;&lt;P&gt;could you also show us how did you link this case?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2019 04:31:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177917#M27102</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2019-11-13T04:31:00Z</dc:date>
    </item>
    <item>
      <title>To link it I added the prober</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177918#M27103</link>
      <description>&lt;P&gt;To link it I added the prober library directory, e.g. compilers_and_libraries_2019.5.281\windows\ipp\lib\ia32_win and then I used pragmas:&lt;/P&gt;&lt;P&gt;#pragma comment(lib, "ippi.lib")&lt;BR /&gt;#pragma comment(lib, "ipps.lib")&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2019 07:24:08 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177918#M27103</guid>
      <dc:creator>Nielsen__Troels</dc:creator>
      <dc:date>2019-11-13T07:24:08Z</dc:date>
    </item>
    <item>
      <title>Ok, thanks. The fix of this</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177919#M27104</link>
      <description>&lt;P&gt;Ok, thanks. The fix of this&amp;nbsp;issue would be available to the nearest release of IPP v.2020. We will keep this forum thread updated when this release would happen.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Nov 2019 15:28:15 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1177919#M27104</guid>
      <dc:creator>Gennady_F_Intel</dc:creator>
      <dc:date>2019-11-13T15:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: Ok, thanks. The fix of this</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1259224#M27567</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am still experiencing this issue in version 2020. I used the same source code as before but the CPU is now an i9-10980HK.&lt;/P&gt;
&lt;P&gt;In x86 builds the version info returned is&amp;nbsp;ippSP AVX2 (h9) 2020.0.3 (r0x3390eac5) 2020.0.3.865135301. The access violation occurs at&amp;nbsp;0x00d143b8 in ippih9.dll.&lt;/P&gt;
&lt;P&gt;In x64 builds the version info returned is ippSP AVX2 (l9) 2020.0.3 (r0x3390eac5) 2020.0.3.865135301. The access violation occurs at&amp;nbsp;0x00f7209e in&amp;nbsp;ippil9.dll.&lt;/P&gt;
&lt;P&gt;The address that it is trying to read from is pSrc - 5069 in x86 and pSrc +&amp;nbsp;36245229014314 in x64.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Feb 2021 09:13:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Access-violation-in-ippiWarpBilinear/m-p/1259224#M27567</guid>
      <dc:creator>Nielsen__Troels</dc:creator>
      <dc:date>2021-02-25T09:13:33Z</dc:date>
    </item>
  </channel>
</rss>

