<?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 Intell IPP with visual studio 2010 in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Intell-IPP-with-visual-studio-2010/m-p/804885#M3531</link>
    <description>Hi Arrahul,&lt;BR /&gt;&lt;BR /&gt;You may refer to the article : &lt;A href="http://software.intel.com/en-us/articles/intel-integrated-performance-primitives-intel-ipp-for-windows-compiling-and-linking-with-microsoft-visual-c-and-intel-c-compilers/"&gt;Compiling and Linking with Microsoft* Visual C++* and Intel C++ Compiler&lt;/A&gt;and &lt;A href="http://software.intel.com/en-us/articles/introduction-to-linking-with-intel-ipp-70-library"&gt;Introduction to Linking with the Intel IPP 7.0 Library&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Simply speaking, There are two kind of Intel IPP libraries: &lt;BR /&gt;1. static libraries: including serial static librayr ipp*_l.ib under "lib" folder and threaded static library ipp*_t.lib. &lt;BR /&gt;2. dynamic libraries: including dynamicimported library ipp*.lib under lib and dynamic library under the "redist " folder. (once you link imported library, the binary will link the correspondingdll at run time). &lt;BR /&gt;&lt;BR /&gt;and there are multiple ways to implementeither static link moreor dynamic link modein MSVS 2010. &lt;BR /&gt;For example, manually include allimported library names under Additional dependencies tab orwrite thecode as sergeysuggested. &lt;BR /&gt;&lt;BR /&gt;or use thequick guide in IDE enviornment as below figure, which will setconfiguration for your applicationautomatically. &lt;BR /&gt;&lt;BR /&gt;But please note, during run time, you should make sure the executable file can search these dlllibraries. either in current folder, solution folder, system folder or the folders wheresystem environment variable PATHpoint to.&lt;BR /&gt;&lt;BR /&gt;In general, when install intel composer(ipp), the path C:\Program Files (x86)\Intel\Composer XE 2011 SP1\redist\ia32\ipp have been added in PATH. but if not, you may need to add it manually. &lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Ying &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;</description>
    <pubDate>Tue, 21 Feb 2012 02:13:39 GMT</pubDate>
    <dc:creator>Ying_H_Intel</dc:creator>
    <dc:date>2012-02-21T02:13:39Z</dc:date>
    <item>
      <title>Intell IPP with visual studio 2010</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Intell-IPP-with-visual-studio-2010/m-p/804880#M3526</link>
      <description>&lt;P&gt;Hai&lt;BR /&gt;&lt;BR /&gt;While using Intel IPP with Intel parallel studio XE with built in Intel C++ compiler, how do we include the static libraries and dynamic run time libraries if we are using a visual studio based IDE. We have the option of specifying the static libraries(.lib) directroy path under the linker section( Additional library directories)in the project properties. But merely doing this , does it include all the relevant libraries or do we need to specifically include all the library names under Additional dependencies tab. How do we include the run time libraries or when do we use the "redist " folder outside the ipp folder. ? I hope the redist folder is the dynamic library. How do we link it to the application at our hand using vidual studio 2010?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;Rahul&lt;/P&gt;</description>
      <pubDate>Wed, 26 Oct 2011 21:29:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Intell-IPP-with-visual-studio-2010/m-p/804880#M3526</guid>
      <dc:creator>arrahul</dc:creator>
      <dc:date>2011-10-26T21:29:31Z</dc:date>
    </item>
    <item>
      <title>Intell IPP with visual studio 2010</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Intell-IPP-with-visual-studio-2010/m-p/804881#M3527</link>
      <description>&lt;P&gt;This documentation that comes with the IPP installation maybe of help, particularly the section on "Configuring Your Microsoft* Development Environment to Link with Intel IPP":&lt;BR /&gt;&lt;BR /&gt;C:\Program Files\Intel\Composer XE 2011 SP1\Documentation\en_US\ipp\ipp_userguide\index.htm &lt;BR /&gt;&lt;BR /&gt;Note the path may be different on your machine - it should be relative to where you installed it.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Oct 2011 01:41:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Intell-IPP-with-visual-studio-2010/m-p/804881#M3527</guid>
      <dc:creator>Amante_Mangaser</dc:creator>
      <dc:date>2011-10-27T01:41:07Z</dc:date>
    </item>
    <item>
      <title>Intell IPP with visual studio 2010</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Intell-IPP-with-visual-studio-2010/m-p/804882#M3528</link>
      <description>&lt;P&gt;Thanks a lot . I appreciate. I have one more question regarding the use of environment variables. If we run the batch file that comes along with the intel Ipp to set the environment variables, Path, Lib and Include, I found that I dont have to inlcude these variables in the IDE ( Visual Studio 2010) that I was using. I was able to compile the code without the setting of these Paths in the include directories and Linker options. My question is why it is given as two different sections in the user manual that comes along with the Intel IPP use for windows OS. That is it is written that even If we set the environment variables using the batch files, we need to include those paths in the visual studio enviornment. And moreover in Visual Studio 2010 I dint find any way to include the run time libraries other than including their path inside the Linker dependencies. Is this the right way to do it? Or do we need to create a separate system environment variable and add the path of " redist" appended to the PATH environment variable in the list of system environment variables already existing there.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Oct 2011 19:48:23 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Intell-IPP-with-visual-studio-2010/m-p/804882#M3528</guid>
      <dc:creator>arrahul</dc:creator>
      <dc:date>2011-10-28T19:48:23Z</dc:date>
    </item>
    <item>
      <title>Intell IPP with visual studio 2010</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Intell-IPP-with-visual-studio-2010/m-p/804883#M3529</link>
      <description>Hi Rahul,&lt;BR /&gt;&lt;BR /&gt;Here is an example of a manual way to include lib-files,and headers, of course:&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;&lt;P&gt;#if defined ( &lt;STRONG&gt;_IPL_SUPPORT_&lt;/STRONG&gt; )&lt;BR /&gt;#include &lt;IPL.H&gt;&lt;BR /&gt;#include &lt;IPLERROR.H&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;#pragma comment ( lib, "ipl.lib" )&lt;/SPAN&gt;&lt;BR /&gt;#endif&lt;/IPLERROR.H&gt;&lt;/IPL.H&gt;&lt;/P&gt;&lt;P&gt;#if defined ( &lt;STRONG&gt;_IPP_SUPPORT_&lt;/STRONG&gt; )&lt;BR /&gt;#include &lt;IPPI.H&gt;&lt;BR /&gt;#include &lt;IPPS.H&gt;&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;#pragma comment ( lib, "ippixx.lib" )&lt;/SPAN&gt; // Image Processing library&lt;BR /&gt;&lt;SPAN style="text-decoration: underline;"&gt;#pragma comment ( lib, "ippsxx.lib" )&lt;/SPAN&gt; //Signal Processing library&lt;BR /&gt;#endif&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;Where &lt;STRONG&gt;xx&lt;/STRONG&gt; is a two-digit number.&lt;BR /&gt;&lt;BR /&gt;Take into account, that any valid path could be specified in &lt;STRONG&gt;libname&lt;/STRONG&gt; specificator( lib, "&amp;lt;&lt;STRONG&gt;libname&lt;/STRONG&gt;&amp;gt;" ) of a &lt;SPAN style="text-decoration: underline;"&gt;#pragma comment&lt;/SPAN&gt; directive, like&lt;BR /&gt;&lt;BR /&gt;#pragma comment ( lib, "..\..\ippixx.lib" )&lt;BR /&gt;or&lt;BR /&gt;#pragma comment ( lib, "..\Folder1\Folder2\ippixx.lib" )&lt;BR /&gt;etc&lt;BR /&gt;&lt;BR /&gt;Ialways use&lt;SPAN style="text-decoration: underline;"&gt;#pragma comment&lt;/SPAN&gt; directive approach because it gives more flexibility.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Sergey&lt;/IPPS.H&gt;&lt;/IPPI.H&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Oct 2011 03:04:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Intell-IPP-with-visual-studio-2010/m-p/804883#M3529</guid>
      <dc:creator>SergeyKostrov</dc:creator>
      <dc:date>2011-10-29T03:04:11Z</dc:date>
    </item>
    <item>
      <title>Intell IPP with visual studio 2010</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Intell-IPP-with-visual-studio-2010/m-p/804884#M3530</link>
      <description>Thanks a lot Sergey. I appreciate.</description>
      <pubDate>Fri, 11 Nov 2011 01:49:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Intell-IPP-with-visual-studio-2010/m-p/804884#M3530</guid>
      <dc:creator>arrahul</dc:creator>
      <dc:date>2011-11-11T01:49:04Z</dc:date>
    </item>
    <item>
      <title>Intell IPP with visual studio 2010</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Intell-IPP-with-visual-studio-2010/m-p/804885#M3531</link>
      <description>Hi Arrahul,&lt;BR /&gt;&lt;BR /&gt;You may refer to the article : &lt;A href="http://software.intel.com/en-us/articles/intel-integrated-performance-primitives-intel-ipp-for-windows-compiling-and-linking-with-microsoft-visual-c-and-intel-c-compilers/"&gt;Compiling and Linking with Microsoft* Visual C++* and Intel C++ Compiler&lt;/A&gt;and &lt;A href="http://software.intel.com/en-us/articles/introduction-to-linking-with-intel-ipp-70-library"&gt;Introduction to Linking with the Intel IPP 7.0 Library&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Simply speaking, There are two kind of Intel IPP libraries: &lt;BR /&gt;1. static libraries: including serial static librayr ipp*_l.ib under "lib" folder and threaded static library ipp*_t.lib. &lt;BR /&gt;2. dynamic libraries: including dynamicimported library ipp*.lib under lib and dynamic library under the "redist " folder. (once you link imported library, the binary will link the correspondingdll at run time). &lt;BR /&gt;&lt;BR /&gt;and there are multiple ways to implementeither static link moreor dynamic link modein MSVS 2010. &lt;BR /&gt;For example, manually include allimported library names under Additional dependencies tab orwrite thecode as sergeysuggested. &lt;BR /&gt;&lt;BR /&gt;or use thequick guide in IDE enviornment as below figure, which will setconfiguration for your applicationautomatically. &lt;BR /&gt;&lt;BR /&gt;But please note, during run time, you should make sure the executable file can search these dlllibraries. either in current folder, solution folder, system folder or the folders wheresystem environment variable PATHpoint to.&lt;BR /&gt;&lt;BR /&gt;In general, when install intel composer(ipp), the path C:\Program Files (x86)\Intel\Composer XE 2011 SP1\redist\ia32\ipp have been added in PATH. but if not, you may need to add it manually. &lt;BR /&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Ying &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;</description>
      <pubDate>Tue, 21 Feb 2012 02:13:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Intell-IPP-with-visual-studio-2010/m-p/804885#M3531</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2012-02-21T02:13:39Z</dc:date>
    </item>
  </channel>
</rss>

