<?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 px function will not link; code example included in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/px-function-will-not-link-code-example-included/m-p/772240#M810</link>
    <description>&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;Please refer to below article to get information about initialization of PX code of IPP library.&lt;/P&gt;&lt;P&gt;&lt;A href="http://software.intel.com/en-us/articles/generic-library-dispatching-with-the-ipp-70-library/"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;A href="http://software.intel.com/en-us/articles/generic-library-dispatching-with-the-ipp-70-library/" target="_blank"&gt;http://software.intel.com/en-us/articles/generic-library-dispatching-with-the-ipp-70-library/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Naveen Gv&lt;/P&gt;</description>
    <pubDate>Wed, 21 Dec 2011 03:16:30 GMT</pubDate>
    <dc:creator>Naveen_G_Intel</dc:creator>
    <dc:date>2011-12-21T03:16:30Z</dc:date>
    <item>
      <title>px function will not link; code example included</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/px-function-will-not-link-code-example-included/m-p/772238#M808</link>
      <description>This is example code from VS 2010, with ALL *_l.lib files added to the project. (Lib files are from ipp folder of Composer XE 2011 SP1.)&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;The w7 version (commented out) will build, but the px version gives unresolved external:_px_ippiResize_8u_C3R@68.&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;What am I doing wrong?&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;DIV id="_mcePaste"&gt;#include "stdafx.h"&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;#include &lt;IPPDEFS.H&gt;&lt;/IPPDEFS.H&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;extern "C" {&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;/*&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;IppStatus __stdcall w7_ippiResize_8u_C3R (const Ipp8u* pSrc, IppiSize srcSize, int srcStep, IppiRect srIppcROI,&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;                   Ipp8u* pDst, int dstStep, IppiSize dstRoiSize,&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;                   double xFactor, double yFactor, int interpolation);&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;*/&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;IppStatus __stdcall px_ippiResize_8u_C3R (const Ipp8u* pSrc, IppiSize srcSize, int srcStep, IppiRect srIppcROI,&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;                   Ipp8u* pDst, int dstStep, IppiSize dstRoiSize,&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;                   double xFactor, double yFactor, int interpolation);&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;}&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;SPAN style="white-space: pre;"&gt;									&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;int _tmain(int argc, _TCHAR* argv[])&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;{&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;SPAN style="white-space: pre;"&gt;	&lt;/SPAN&gt;IppStatus s;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;SPAN style="white-space: pre;"&gt;	&lt;/SPAN&gt;IppiRect r1;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;SPAN style="white-space: pre;"&gt;	&lt;/SPAN&gt;IppiSize sz;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;SPAN style="white-space: pre;"&gt;	&lt;/SPAN&gt;//s = w7_ippiResize_8u_C3R(0, sz, 0, r1, 0, 0, sz, 0, 0, 0 );&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;SPAN style="white-space: pre;"&gt;	&lt;/SPAN&gt; s = px_ippiResize_8u_C3R(0, sz, 0, r1, 0, 0, sz, 0, 0, 0 );&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;&lt;SPAN style="white-space: pre;"&gt;	&lt;/SPAN&gt;return 0;&lt;/DIV&gt;&lt;DIV id="_mcePaste"&gt;}&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 Dec 2011 15:52:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/px-function-will-not-link-code-example-included/m-p/772238#M808</guid>
      <dc:creator>davidalm</dc:creator>
      <dc:date>2011-12-20T15:52:34Z</dc:date>
    </item>
    <item>
      <title>px function will not link; code example included</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/px-function-will-not-link-code-example-included/m-p/772239#M809</link>
      <description>&amp;gt;&amp;gt;...This is example code from VS 2010, with ALL &lt;STRONG&gt;*_l.lib&lt;/STRONG&gt; files added to the project...&lt;BR /&gt;&lt;BR /&gt; It looks like some library was not added.Could you search all these '&lt;STRONG&gt;*_l.lib&lt;/STRONG&gt;' filesfor a sub-string&lt;BR /&gt; '&lt;STRONG&gt;px_ippiResize_8u_C3R&lt;/STRONG&gt;'?&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Dec 2011 01:40:57 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/px-function-will-not-link-code-example-included/m-p/772239#M809</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2011-12-21T01:40:57Z</dc:date>
    </item>
    <item>
      <title>px function will not link; code example included</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/px-function-will-not-link-code-example-included/m-p/772240#M810</link>
      <description>&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;Please refer to below article to get information about initialization of PX code of IPP library.&lt;/P&gt;&lt;P&gt;&lt;A href="http://software.intel.com/en-us/articles/generic-library-dispatching-with-the-ipp-70-library/"&gt;&lt;SPAN style="text-decoration: underline;"&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;A href="http://software.intel.com/en-us/articles/generic-library-dispatching-with-the-ipp-70-library/" target="_blank"&gt;http://software.intel.com/en-us/articles/generic-library-dispatching-with-the-ipp-70-library/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Naveen Gv&lt;/P&gt;</description>
      <pubDate>Wed, 21 Dec 2011 03:16:30 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/px-function-will-not-link-code-example-included/m-p/772240#M810</guid>
      <dc:creator>Naveen_G_Intel</dc:creator>
      <dc:date>2011-12-21T03:16:30Z</dc:date>
    </item>
    <item>
      <title>px function will not link; code example included</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/px-function-will-not-link-code-example-included/m-p/772241#M811</link>
      <description>Hi Naveen,&lt;BR /&gt;&lt;BR /&gt;I just read the article you mentioned and there is a statement that:&lt;BR /&gt;&lt;BR /&gt; ...&lt;BR /&gt; Of course, you must also be sure to &lt;SPAN style="text-decoration: underline;"&gt;include the appropriate generic library&lt;/SPAN&gt; in the list of libraries that&lt;BR /&gt; your application will link against.&lt;BR /&gt; ...&lt;BR /&gt;&lt;BR /&gt;So, it means that a correct &lt;SPAN style="text-decoration: underline;"&gt;generic library was not included&lt;/SPAN&gt; in the first place, right?&lt;BR /&gt;&lt;BR /&gt;David claims that he added &lt;SPAN style="text-decoration: underline;"&gt;all&lt;/SPAN&gt; libraries. I thinkit would be nice to see a complete list ofadded libraries.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Sergey&lt;BR /&gt;</description>
      <pubDate>Wed, 21 Dec 2011 15:15:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/px-function-will-not-link-code-example-included/m-p/772241#M811</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2011-12-21T15:15:24Z</dc:date>
    </item>
    <item>
      <title>px function will not link; code example included</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/px-function-will-not-link-code-example-included/m-p/772242#M812</link>
      <description>&lt;P&gt;Hi David &amp;amp; Sergey,&lt;/P&gt;&lt;P&gt;As in the below picture, you have to download separate package from the registration centre. It has got px and mx libraries. This was not included in the main package.&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper"&gt;&lt;img src="https://community.intel.com/skins/images/7B13F55A7CE623EF42E69096FA81A3A1/2021_redesign/images/image_not_found.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Naveen Gv</description>
      <pubDate>Thu, 22 Dec 2011 06:02:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/px-function-will-not-link-code-example-included/m-p/772242#M812</guid>
      <dc:creator>Naveen_G_Intel</dc:creator>
      <dc:date>2011-12-22T06:02:03Z</dc:date>
    </item>
    <item>
      <title>px function will not link; code example included</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/px-function-will-not-link-code-example-included/m-p/772243#M813</link>
      <description>Thank you, Naveen! Finally explained.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Sergey&lt;BR /&gt;</description>
      <pubDate>Thu, 22 Dec 2011 14:26:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/px-function-will-not-link-code-example-included/m-p/772243#M813</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2011-12-22T14:26:54Z</dc:date>
    </item>
  </channel>
</rss>

