<?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: CMake configuration for static dispatching? in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1525468#M28529</link>
    <description>&lt;P&gt;Hi Pascal,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please elaborate on your issue?&amp;nbsp;&lt;SPAN&gt;In your CMakeLists.txt file, you could use find_package() to locate Intel IPP.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;A Sample CMake:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;cmake_minimum_required(VERSION 3.16.3)&lt;BR /&gt;include_directories(/opt/intel/oneapi/ipp/2021.9.0/tools/intel64/staticlib)&lt;BR /&gt;project(foo)&lt;BR /&gt;add_executable(foo main.cpp)&lt;BR /&gt;set(IPP_SHARED OFF)&lt;BR /&gt;find_package(IPP REQUIRED)&lt;BR /&gt;target_link_libraries(foo PRIVATE ${IPP_LIBRARIES})&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Intel® Integrated Performance Primitives (Intel® IPP) installs in the subdirectory referred to as&amp;nbsp;&lt;SPAN class="filepath"&gt;&lt;VAR&gt;&amp;lt;ipp directory&amp;gt;&lt;/VAR&gt;&lt;/SPAN&gt;&amp;nbsp;inside&amp;nbsp;&lt;SPAN class="filepath"&gt;&lt;VAR&gt;&amp;lt;install_dir&amp;gt;&lt;/VAR&gt;&lt;/SPAN&gt;. By default, the&amp;nbsp;&lt;SPAN class="filepath"&gt;&lt;VAR&gt;&amp;lt;install_dir&amp;gt;&lt;/VAR&gt;&lt;/SPAN&gt;&amp;nbsp;is:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL id="UL_907FA3BE8D414284BB235D8CD6EAB677"&gt;
&lt;LI id="LI_7E23EE65D44447A08719800F66C9AE38"&gt;admin:&lt;SPAN class="filepath"&gt;/opt/intel/oneapi&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI id="LI_726E76F74DE24C2AB16D74072F8784E5"&gt;user:&lt;SPAN class="filepath"&gt;~/intel/oneapi&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You could refer to the Linux OS section under the below link to find Intel IPP and more details on your system.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://www.intel.com/content/www/us/en/docs/ipp/developer-guide-oneapi/2022-2/finding-intel-ipp-on-your-system.html#LINUX" target="_blank"&gt;https://www.intel.com/content/www/us/en/docs/ipp/developer-guide-oneapi/2022-2/finding-intel-ipp-on-your-system.html#LINUX&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;find_package(Package Name)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Package Name: Here you need to input the name of the package you want to find. Make sure it corresponds to a CMake module or script that provides the package's configuration information.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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, 21 Sep 2023 09:06:25 GMT</pubDate>
    <dc:creator>ShanmukhS_Intel</dc:creator>
    <dc:date>2023-09-21T09:06:25Z</dc:date>
    <item>
      <title>CMake configuration for static dispatching?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1512077#M28477</link>
      <description>&lt;P&gt;I am linking statically IPP to my project using CMake. I basically do:&lt;/P&gt;&lt;LI-CODE lang="none"&gt;// CMakeLists.txt
...
set(IPP_SHARED OFF)
find_package(IPP REQUIRED)
target_link_libraries(myapp PRIVATE ${IPP_LIBRARIES})
...&lt;/LI-CODE&gt;&lt;P&gt;and then&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;// myapp.c
#include &amp;lt;ipp.h&amp;gt;
...&lt;/LI-CODE&gt;&lt;P&gt;And this is fine.&lt;/P&gt;&lt;P&gt;However, I want to use static dispatching as I have the luxury to know the target hardware:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;// myapp.c
#include &amp;lt;ipp_e9.h&amp;gt;
...&lt;/LI-CODE&gt;&lt;P&gt;This doesn't work as `ipp_e9.h` is not in the include paths returned by the `IPP` package. What configuration should I use to enable it?&lt;/P&gt;</description>
      <pubDate>Tue, 08 Aug 2023 14:21:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1512077#M28477</guid>
      <dc:creator>wombat</dc:creator>
      <dc:date>2023-08-08T14:21:20Z</dc:date>
    </item>
    <item>
      <title>Re:CMake configuration for static dispatching?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1512931#M28480</link>
      <description>&lt;P&gt;Hi Pascal,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for posting in Intel Communities.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please get back to us with the OS details and IPP version being used by you? Could you please get back to us with a sample reproducer? It helps us reproduce the issue at our end and guide you in resolving the same.&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 15:49:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1512931#M28480</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-08-10T15:49:44Z</dc:date>
    </item>
    <item>
      <title>Re: Re:CMake configuration for static dispatching?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1513069#M28482</link>
      <description>&lt;P&gt;OS is Windows 10.&lt;/P&gt;&lt;P&gt;IPP version is 2021.9.0.&lt;/P&gt;&lt;P&gt;A sample would look like below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="cpp"&gt;// main.cpp
#include &amp;lt;ipp_e9.h&amp;gt; // fails here; OK if commented
#include &amp;lt;ipp.h&amp;gt;

int main() { return 0; }&lt;/LI-CODE&gt;&lt;LI-CODE lang="none"&gt;// CMakeLists.txt
cmake_minimum_required(VERSION 3.21)
project(foo)
add_executable(foo main.cpp)
set(IPP_SHARED OFF)
find_package(IPP REQUIRED)
target_link_libraries(foo PRIVATE ${IPP_LIBRARIES})&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Aug 2023 20:41:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1513069#M28482</guid>
      <dc:creator>wombat</dc:creator>
      <dc:date>2023-08-10T20:41:44Z</dc:date>
    </item>
    <item>
      <title>Re:CMake configuration for static dispatching?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1515017#M28489</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for sharing the details.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;We are looking into your issue internally. We will get back to you soon with an update.&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, 17 Aug 2023 14:32:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1515017#M28489</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-08-17T14:32:31Z</dc:date>
    </item>
    <item>
      <title>Re:CMake configuration for static dispatching?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1516014#M28492</link>
      <description>&lt;P&gt;Hi Pascal,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please try adding the line to your CMakeLists.txt as mentioned below and run make and let us know if the issue persists?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;include_directories(&amp;lt;add the include directory which contains the requires header file&amp;gt;)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;For Ex:  include_directories(/opt/intel/oneapi/ipp/2021.9.0/tools/intel64/staticlib)&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;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 21 Aug 2023 10:56:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1516014#M28492</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-08-21T10:56:12Z</dc:date>
    </item>
    <item>
      <title>Re:CMake configuration for static dispatching?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1518352#M28496</link>
      <description>&lt;P&gt;Hi Pascal,&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 the issue persists?&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>Mon, 28 Aug 2023 16:16:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1518352#M28496</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-08-28T16:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: Re:CMake configuration for static dispatching?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1520196#M28508</link>
      <description>&lt;P&gt;I could, however how do I find the correct path from within CMake, so that the solution is portable?&lt;/P&gt;</description>
      <pubDate>Mon, 04 Sep 2023 08:22:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1520196#M28508</guid>
      <dc:creator>wombat</dc:creator>
      <dc:date>2023-09-04T08:22:50Z</dc:date>
    </item>
    <item>
      <title>Re:CMake configuration for static dispatching?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1521979#M28520</link>
      <description>&lt;P&gt;Hi Pascal,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;In your CMakeLists.txt file, use find_package() to locate Intel IPP. You are expected to specify the desired IPP version and component(s) you want to use or you could use find_library() to locate the static library: After finding IPP, you can use find_library() to locate the static library you want to link.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Could you please try these and let us know if you need any help?&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>Fri, 08 Sep 2023 17:37:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1521979#M28520</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-09-08T17:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Re:CMake configuration for static dispatching?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1522469#M28521</link>
      <description>&lt;P&gt;I don't understand, the static library is already found by `find_package`.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you provide a working example based on the code you asked me?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2023 11:25:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1522469#M28521</guid>
      <dc:creator>wombat</dc:creator>
      <dc:date>2023-09-11T11:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: CMake configuration for static dispatching?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1525468#M28529</link>
      <description>&lt;P&gt;Hi Pascal,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please elaborate on your issue?&amp;nbsp;&lt;SPAN&gt;In your CMakeLists.txt file, you could use find_package() to locate Intel IPP.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;A Sample CMake:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;cmake_minimum_required(VERSION 3.16.3)&lt;BR /&gt;include_directories(/opt/intel/oneapi/ipp/2021.9.0/tools/intel64/staticlib)&lt;BR /&gt;project(foo)&lt;BR /&gt;add_executable(foo main.cpp)&lt;BR /&gt;set(IPP_SHARED OFF)&lt;BR /&gt;find_package(IPP REQUIRED)&lt;BR /&gt;target_link_libraries(foo PRIVATE ${IPP_LIBRARIES})&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Intel® Integrated Performance Primitives (Intel® IPP) installs in the subdirectory referred to as&amp;nbsp;&lt;SPAN class="filepath"&gt;&lt;VAR&gt;&amp;lt;ipp directory&amp;gt;&lt;/VAR&gt;&lt;/SPAN&gt;&amp;nbsp;inside&amp;nbsp;&lt;SPAN class="filepath"&gt;&lt;VAR&gt;&amp;lt;install_dir&amp;gt;&lt;/VAR&gt;&lt;/SPAN&gt;. By default, the&amp;nbsp;&lt;SPAN class="filepath"&gt;&lt;VAR&gt;&amp;lt;install_dir&amp;gt;&lt;/VAR&gt;&lt;/SPAN&gt;&amp;nbsp;is:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;UL id="UL_907FA3BE8D414284BB235D8CD6EAB677"&gt;
&lt;LI id="LI_7E23EE65D44447A08719800F66C9AE38"&gt;admin:&lt;SPAN class="filepath"&gt;/opt/intel/oneapi&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI id="LI_726E76F74DE24C2AB16D74072F8784E5"&gt;user:&lt;SPAN class="filepath"&gt;~/intel/oneapi&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;You could refer to the Linux OS section under the below link to find Intel IPP and more details on your system.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://www.intel.com/content/www/us/en/docs/ipp/developer-guide-oneapi/2022-2/finding-intel-ipp-on-your-system.html#LINUX" target="_blank"&gt;https://www.intel.com/content/www/us/en/docs/ipp/developer-guide-oneapi/2022-2/finding-intel-ipp-on-your-system.html#LINUX&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;find_package(Package Name)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Package Name: Here you need to input the name of the package you want to find. Make sure it corresponds to a CMake module or script that provides the package's configuration information.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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, 21 Sep 2023 09:06:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1525468#M28529</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-09-21T09:06:25Z</dc:date>
    </item>
    <item>
      <title>Re: CMake configuration for static dispatching?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1527353#M28533</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You already proposed to hardcode the path to the library (&lt;A href="http://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1516014#M28492" target="_self"&gt;here&lt;/A&gt;), but as I answered (&lt;A href="http://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1520196#M28508" target="_self"&gt;here&lt;/A&gt;), I am looking for a portable solution, so that anybody could configure and compile the project without having to know where IPP is installed on their system.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to achieve that? Or are portable CMake projects using IPP restricted to dynamic dispatching? It seems to me, seeing you struggling with this as I am, that this possibility has not been taken into account by the maintainers of IPP's CMake configuration scripts.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Sep 2023 14:44:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1527353#M28533</guid>
      <dc:creator>wombat</dc:creator>
      <dc:date>2023-09-25T14:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: CMake configuration for static dispatching?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1530834#M28540</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your patience. This is to kindly inform you that currently, we don't provide paths to static dispatcher header files as part of cmake configuration files.&lt;/P&gt;
&lt;P&gt;As a workaround, instead of using the full path, one could use ${IPP_ROOT_REL_PATH}/opt/ipp/tools/intel64/staticlib for IPP2021.10 and $ENV{IPPROOT}/tools/intel64/staticlib for previous releases.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please check and let us know the updates?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Shanmukh.SS&lt;/P&gt;</description>
      <pubDate>Tue, 17 Oct 2023 03:00:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1530834#M28540</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-10-17T03:00:00Z</dc:date>
    </item>
    <item>
      <title>Re:CMake configuration for static dispatching?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1534410#M28546</link>
      <description>&lt;P&gt;Hi,&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>Tue, 17 Oct 2023 02:56:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1534410#M28546</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-10-17T02:56:16Z</dc:date>
    </item>
    <item>
      <title>Re:CMake configuration for static dispatching?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1535455#M28548</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;Thanks for accepting our solution. If you have any other queries, please feel free to raise a new thread.&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, 19 Oct 2023 12:33:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/CMake-configuration-for-static-dispatching/m-p/1535455#M28548</guid>
      <dc:creator>ShanmukhS_Intel</dc:creator>
      <dc:date>2023-10-19T12:33:45Z</dc:date>
    </item>
  </channel>
</rss>

