<?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 IPP dynamic linking with dispatching disabled? in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107694#M25313</link>
    <description>&lt;P&gt;Hi staff,&lt;/P&gt;

&lt;P&gt;I'm using the old Intel Parallel PXE 2011. I have a question about dynamic linking and dispatching.&lt;/P&gt;

&lt;P&gt;I know that dynamic linking is default with dispatching enabled. Is there any option/function call to disable it?&lt;/P&gt;

&lt;P&gt;I want this because i want to compare different data between static linking with no dispatching and dynamic linking (with dispatching disable).&lt;/P&gt;

&lt;P&gt;Hope anyone can help me.&lt;/P&gt;

&lt;P&gt;Best regards,&lt;/P&gt;

&lt;P&gt;Tam.&lt;/P&gt;</description>
    <pubDate>Wed, 27 Apr 2016 02:56:43 GMT</pubDate>
    <dc:creator>Tam_N_1</dc:creator>
    <dc:date>2016-04-27T02:56:43Z</dc:date>
    <item>
      <title>IPP dynamic linking with dispatching disabled?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107694#M25313</link>
      <description>&lt;P&gt;Hi staff,&lt;/P&gt;

&lt;P&gt;I'm using the old Intel Parallel PXE 2011. I have a question about dynamic linking and dispatching.&lt;/P&gt;

&lt;P&gt;I know that dynamic linking is default with dispatching enabled. Is there any option/function call to disable it?&lt;/P&gt;

&lt;P&gt;I want this because i want to compare different data between static linking with no dispatching and dynamic linking (with dispatching disable).&lt;/P&gt;

&lt;P&gt;Hope anyone can help me.&lt;/P&gt;

&lt;P&gt;Best regards,&lt;/P&gt;

&lt;P&gt;Tam.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2016 02:56:43 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107694#M25313</guid>
      <dc:creator>Tam_N_1</dc:creator>
      <dc:date>2016-04-27T02:56:43Z</dc:date>
    </item>
    <item>
      <title>Hi Tam,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107695#M25314</link>
      <description>&lt;P&gt;Hi Tam,&lt;/P&gt;

&lt;P&gt;In the existing IPP environment, I think it is impossible. CPU dispatching is inherent part of dynamic library.&lt;/P&gt;

&lt;P&gt;However, from technical point of view, there is almost no difference between static and dynamic libs. Calling of a dispatched function differs from calling of statically linked function by a few CPU clocks. Only a first call of an IPP function starts CPU dispatcher, which initializes function pointers according to CPU characteristics, or according to selected CPU features, if you want to execute a particular CPU optimization on a higher CPU (for example, SSE4.2 code on AVX CPU). This first step may take (and, actually takes) longer also because with dynamic linking it leads to bunch of DLLs loading.&lt;/P&gt;

&lt;P&gt;After you have done IPP initialization (CPU dispatching initialization), dynamic function calls are as fast as static function calls. Or, all this is not about performance?&lt;/P&gt;

&lt;P&gt;Please, tell us what particular experiments you want to execute, and may be&amp;nbsp;we&amp;nbsp;could&amp;nbsp;find the other ways to implement this.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2016 06:04:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107695#M25314</guid>
      <dc:creator>Sergey_K_Intel</dc:creator>
      <dc:date>2016-04-27T06:04:00Z</dc:date>
    </item>
    <item>
      <title>Hi Sergey,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107696#M25315</link>
      <description>&lt;P&gt;Hi Sergey,&lt;/P&gt;

&lt;P&gt;I'm wondering if it is possible to use dynamic library linking + not use dispatching.&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;My circumstance is: the old project used static library linked without calling to ippStaticInit/ippInit. (static linking without dispatching).&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;Now, I want to use dynamic library linking. But there is the problem that dynamic library linking produces different output as compared to the old project because it uses dispatching.&lt;/P&gt;

&lt;P&gt;I really don't care about the performance, i'm thinking that program produces the same output for any CPU type when dispatching is disable. Is this true?&lt;/P&gt;

&lt;P&gt;I'm wondering if I can produce results as same as old project by using dynamic library linking? By turn off dispatching? Is it possible?&lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;

&lt;P&gt;Tam.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2016 06:21:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107696#M25315</guid>
      <dc:creator>Tam_N_1</dc:creator>
      <dc:date>2016-04-27T06:21:00Z</dc:date>
    </item>
    <item>
      <title>Different output ? This is a</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107697#M25316</link>
      <description>&lt;P&gt;Different output ? This is a problem. It should be the same.&lt;/P&gt;

&lt;P&gt;Could you please give more info: IPP function you suspect in wrong result, IPP library version with correct output (static linking) and IPP library version with incorrect output (dynamic linking)? Or, you speak about the same library? Please, specify version. And your current CPU model, please.&lt;/P&gt;

&lt;P&gt;Here, we must speak not about difference in static or dynamic linking, but about possible discrepancy of results of different CPU-optimized implementations.&amp;nbsp;It is possible to try different optimizations in both static and dynamic cases.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2016 06:50:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107697#M25316</guid>
      <dc:creator>Sergey_K_Intel</dc:creator>
      <dc:date>2016-04-27T06:50:45Z</dc:date>
    </item>
    <item>
      <title>Hi Sergrey,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107698#M25317</link>
      <description>&lt;P&gt;Hi Sergrey,&lt;/P&gt;

&lt;P&gt;Here is information:&lt;/P&gt;

&lt;P&gt;IPP Function&amp;nbsp;ippsSqrt_32fc_I.&lt;/P&gt;

&lt;P&gt;IPP library version : IPP PXE 2011.&lt;/P&gt;

&lt;P&gt;My CPU model is Intel core i3-3240.&lt;/P&gt;

&lt;P&gt;1/ static library&amp;nbsp;ippm_l.lib ipps_l.lib ippi_l.lib ippvm_l.lib ippcore_l.lib and not call to ippInit() function in sourcecode&lt;/P&gt;

&lt;P&gt;2/ dynamic library&amp;nbsp;ippm.lib ipps.lib ippi.lib ippvm.lib ippcore.lib&lt;/P&gt;

&lt;P&gt;(1) and (2) not give the identical result ( epsilon 10^-6).&lt;/P&gt;

&lt;P&gt;When use (1) + ippInit() then (1) and (2) is same.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;What i want is (2) give the identical result as (1). How could it be?&lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;

&lt;P&gt;Tam&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2016 09:44:27 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107698#M25317</guid>
      <dc:creator>Tam_N_1</dc:creator>
      <dc:date>2016-04-27T09:44:27Z</dc:date>
    </item>
    <item>
      <title>OK. Now it's clear. The fact</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107699#M25318</link>
      <description>&lt;P&gt;OK. Now it's clear. The fact is that in your cases (1) and (2) different CPU codes work.&lt;/P&gt;

&lt;P&gt;In case (1), when there is no initialization with ippInit(), the computations are done using scalar FPU (floating point unit). It's a 80-bit precision device. It is relatively slow, but precise. It is so-called "px/mx" code. Look: &lt;A href="https://software.intel.com/en-us/articles/ipp-dispatcher-control-functions-ippinit-functions"&gt;https://software.intel.com/en-us/articles/ipp-dispatcher-control-functions-ippinit-functions&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;When you call ippInit without particular&amp;nbsp;CPU, like in the function ippInitCpu(cpucode), the most appropriate optimized function variant is chosen. It is done automatically in IPP dynamic libraries. With your CPU this code is kind of SSEx clone (SIMD). If I'm not wrong, for FP calculations SSE precision in 64 bits. SSE is fast, but less precise.&lt;/P&gt;

&lt;P&gt;By the way, you can the same results as in (1) in your (2) case, if, at the beginning, you call ippInitCpu with CPU-type argument&amp;nbsp;for Intel(R) Pentium/II/III&amp;nbsp;processors (ippCpuUnknown, or ippCpuPP, or ippCpuPII, or ippCpuPIII).&lt;/P&gt;

&lt;P&gt;The question is "is 10^-6 enough for you and you may want more performing functionality?". The additional problem may come from the fact, that chosen CPU optimization works throughout the whole library. If you limit your optimization to px/mx, it means, that the limitation will affect all other IPP functions, which may not suffer from FPU/SSE difference. And you may lose performance, where it really necessary.&lt;/P&gt;

&lt;P&gt;As far as I know,&amp;nbsp;Sqrt functionality was redeveloped for better precision in IPP 9.0.&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2016 10:27:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107699#M25318</guid>
      <dc:creator>Sergey_K_Intel</dc:creator>
      <dc:date>2016-04-27T10:27:50Z</dc:date>
    </item>
    <item>
      <title>Hi Sergey,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107700#M25319</link>
      <description>&lt;P&gt;Hi Sergey,&lt;/P&gt;

&lt;P&gt;Thank you alot, The information was almost there, but I've not read it carefully. :(.&lt;/P&gt;

&lt;P&gt;Best regards,&lt;/P&gt;

&lt;P&gt;Tam&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2016 23:58:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107700#M25319</guid>
      <dc:creator>Tam_N_1</dc:creator>
      <dc:date>2016-04-27T23:58:45Z</dc:date>
    </item>
    <item>
      <title>Hi Sergey,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107701#M25320</link>
      <description>&lt;P&gt;Hi Sergey,&lt;/P&gt;

&lt;P&gt;"&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;By the way, you can the same results as in (1) in your (2) case, if, at the beginning, you call ippInitCpu with CPU-type argument&amp;nbsp;for Intel(R) Pentium/II/III&amp;nbsp;processors (ippCpuUnknown, or ippCpuPP, or ippCpuPII, or ippCpuPIII)."&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;I tried (2) with ippCpuUnknown, it seems not to affect the output result at all. I also tried with ippCpuPP, but it didn't give the same output as (1).&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;I don't know why? How do you think about it. Please not I'm using IPP PXE 2011 (7.0) version. The link you gave me is 6.1&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Hope you can help me to solve this.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 12px; line-height: 18px;"&gt;Tam.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2016 05:29:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107701#M25320</guid>
      <dc:creator>Tam_N_1</dc:creator>
      <dc:date>2016-05-02T05:29:26Z</dc:date>
    </item>
    <item>
      <title>Hi,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107702#M25321</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I have tried all CPU types.I used (2) + call ippInitCPU(). Here are results:&lt;/P&gt;

&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width:731px;" width="731"&gt;
	&lt;TBODY&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P align="center"&gt;&lt;STRONG&gt;CPU TYPE&lt;/STRONG&gt;&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;&lt;STRONG&gt;Result&lt;/STRONG&gt;&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuUnknown&amp;nbsp; = 0x00&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P&gt;&lt;STRONG&gt;Dynamic&lt;/STRONG&gt;&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuPP&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x01, /* Intel(R) Pentium(R) processor &amp;nbsp; &amp;nbsp; &amp;nbsp;*/&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuPMX&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x02, /* Pentium(R) processor with MMX(TM) technology &amp;nbsp; &amp;nbsp;*/&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuPPR&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x03, /* Pentium(R) Pro processor &amp;nbsp; &amp;nbsp;*/&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuPII&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x04, /* Pentium(R) II processor &amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuPIII&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x05, /* Pentium(R) III processor and Pentium(R) III Xeon(R) processor &amp;nbsp; &amp;nbsp;*/&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuP4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x06, /* Pentium(R) 4 processor and Intel(R) Xeon(R) processor &amp;nbsp; &amp;nbsp;*/&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuP4HT&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x07, /* Pentium(R) 4 Processor with HT Technology &amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuP4HT2&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x08, /* Pentium(R) 4 processor with Streaming SIMD Extensions 3 &amp;nbsp; &amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuCentrino = 0x09, /* Intel(R) Centrino(TM) mobile technology &amp;nbsp; &amp;nbsp; &amp;nbsp;*/&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuCoreSolo = 0x0a, /* Intel(R) Core(TM) Solo processor &amp;nbsp; &amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuCoreDuo&amp;nbsp; = 0x0b, /* Intel(R) Core(TM) Duo processor &amp;nbsp; &amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuITP&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x10, /* Intel(R) Itanium(R) processor &amp;nbsp; &amp;nbsp; &amp;nbsp;*/&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuITP2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x11, /* Intel(R) Itanium(R) 2 processor &amp;nbsp; &amp;nbsp; &amp;nbsp;*/&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuEM64T&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x20, /* Intel(R) 64 Instruction Set Architecture (ISA) &amp;nbsp; &amp;nbsp; &amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuC2D&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x21, /* Intel(R) Core(TM) 2 Duo processor &amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;O&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuC2Q&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x22, /* Intel(R) Core(TM) 2 Quad processor &amp;nbsp; &amp;nbsp;*/&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;O&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuPenryn&amp;nbsp;&amp;nbsp; = 0x23, /* Intel(R) Core(TM) 2 processor with Intel(R) SSE4.1 &amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;O&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuBonnell&amp;nbsp; = 0x24, /* Intel(R) Atom(TM) processor &amp;nbsp; &amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;O&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuNehalem&amp;nbsp; = 0x25, /* Intel(R) Core(TM) i7 processor */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;O&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuNext&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x26,&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;O&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuSSE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x40, /* Processor supports Streaming SIMD Extensions instruction set&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuSSE2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x41, /* Processor supports Streaming SIMD Extensions 2 instruction set&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuSSE3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x42, /* Processor supports Streaming SIMD Extensions 3 instruction set&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;&lt;STRONG&gt;Static&lt;/STRONG&gt;&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuSSSE3&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x43, /* Processor supports Supplemental Streaming SIMD Extension 3 instruction set */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;O&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuSSE41&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x44, /* Processor supports Streaming SIMD Extensions 4.1 instruction set&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;O&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuSSE42&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x45, /* Processor supports Streaming SIMD Extensions 4.2 instruction set&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;O&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuAVX&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x46, /* Processor supports Advanced Vector Extensions instruction set&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;&lt;STRONG&gt;Dynamic&lt;/STRONG&gt;&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuAES&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x47, /* Processor supports AES New Instructions &amp;nbsp;*/&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;&lt;STRONG&gt;O&lt;/STRONG&gt;&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
		&lt;TR&gt;
			&lt;TD nowrap="nowrap" style="width:667px;height:20px;"&gt;
				&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ippCpuX8664&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x60&amp;nbsp; /* Processor supports 64 bit extension &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;*/&lt;/P&gt;
			&lt;/TD&gt;
			&lt;TD nowrap="nowrap" style="width:64px;height:20px;"&gt;
				&lt;P align="center"&gt;X&lt;/P&gt;
			&lt;/TD&gt;
		&lt;/TR&gt;
	&lt;/TBODY&gt;
&lt;/TABLE&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;X : mean my program can't execute completely. (ignore this please).&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;O : mean my program run completely, but the output not same as (1) or (2).&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Static : mean the output same as (1).&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Dynamic: Mean the output same as (2).&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;As you see, only CPU type ippCPUSSE3 give the same output as static library.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;I wonder if the static is always use ippCPUSSE3 as default in IPP PXE 2011? &lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Let us know how do you think about these.&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Best regards,&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em; line-height: 1.5;"&gt;Tam.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 May 2016 01:28:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107702#M25321</guid>
      <dc:creator>Tam_N_1</dc:creator>
      <dc:date>2016-05-03T01:28:38Z</dc:date>
    </item>
    <item>
      <title>Hi Tam,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107703#M25322</link>
      <description>&lt;P&gt;Hi Tam,&lt;/P&gt;

&lt;P&gt;Thanks for sharing the test result.&lt;/P&gt;

&lt;P&gt;I check the version information, &amp;nbsp;&lt;A href="https://software.intel.com/en-us/articles/which-version-of-the-intel-ipp-intel-mkl-and-intel-tbb-libraries-are-included-in-the-intel"&gt;https://software.intel.com/en-us/articles/which-version-of-the-intel-ipp-intel-mkl-and-intel-tbb-libraries-are-included-in-the-intel&lt;/A&gt;.&amp;nbsp; It seems PXE 2011 are included IPP 7.0 x version.&lt;/P&gt;

&lt;P&gt;No, I don't&amp;nbsp;recalled that the static is always use ippCPUSSE3 as default in IPP PXE 2011?&lt;/P&gt;

&lt;P&gt;anyway, could you please add&amp;nbsp; the below printf information&amp;nbsp; when 1) static&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; and 2) dynamic +&amp;nbsp; call ippInitCPU().&amp;nbsp; in the test case?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;ippCpuSSE3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 0x42, /* Processor supports Streaming SIMD Extensions 3 instruction set&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;/P&gt;

&lt;P align="center"&gt;&lt;STRONG&gt;Static&lt;/STRONG&gt;&lt;/P&gt;

&lt;P&gt;lib = ippsGetLibVersion();&lt;BR /&gt;
	printf(“%s %s %d.%d.%d.%d\n”,&lt;BR /&gt;
	lib-&amp;gt;Name, lib-&amp;gt;Version,&lt;BR /&gt;
	lib-&amp;gt;major,&lt;BR /&gt;
	lib-&amp;gt;minor, lib-&amp;gt;majorBuild, lib-&amp;gt;build);&lt;BR /&gt;
	}&lt;BR /&gt;
	Output:&lt;BR /&gt;
	&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;

&lt;P&gt;Ying&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 05:29:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107703#M25322</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2016-05-04T05:29:44Z</dc:date>
    </item>
    <item>
      <title>Hi Ying,</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107704#M25323</link>
      <description>&lt;P&gt;Hi Ying,&lt;/P&gt;

&lt;P&gt;Here are printed information for (1) and (2):&lt;/P&gt;

&lt;P&gt;(1) : ippsm7_l.lib 7.0 build 205.23 7.0.205.1024&lt;/P&gt;

&lt;P&gt;(2) : ippsm7-7.0.dll 7.0 build 205.23 7.0.205.1024&lt;/P&gt;

&lt;P&gt;Regards,&lt;/P&gt;

&lt;P&gt;Tam.&lt;/P&gt;</description>
      <pubDate>Wed, 04 May 2016 06:16:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107704#M25323</guid>
      <dc:creator>Tam_N_1</dc:creator>
      <dc:date>2016-05-04T06:16:37Z</dc:date>
    </item>
    <item>
      <title>Hi Tam, </title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107705#M25324</link>
      <description>&lt;P&gt;Hi Tam,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thank you much for the test. &amp;nbsp;Then it is clear now.&amp;nbsp;&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;IPP dispatched the optimized code according to the CPU type.&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;For example , the table in &amp;nbsp;&lt;A href="https://software.intel.com/en-us/articles/intel-integrated-performance-primitives-intel-ipp-understanding-cpu-optimized-code-used-in-intel-ipp"&gt;https://software.intel.com/en-us/articles/intel-integrated-performance-primitives-intel-ipp-understanding-cpu-optimized-code-used-in-intel-ipp&lt;/A&gt;&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;m7: means optimized for SSE3 CPU 64bit&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;As the static link was using m7 code, &amp;nbsp;so when dynamic + init CPU (ippCPU SSE3) &amp;nbsp;use m7 , then they run same cpu-optimized code. So keep same result.&amp;nbsp;&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;IPP 9.0 have update in the week. You may try it at&amp;nbsp;https://software.intel.com/en-us/intel-ipp/ =&amp;gt; try .&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;Best Regards,&lt;/P&gt;

&lt;P style="word-wrap: break-word; font-size: 12px;"&gt;Ying&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2016 01:30:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107705#M25324</guid>
      <dc:creator>Ying_H_Intel</dc:creator>
      <dc:date>2016-05-05T01:30:21Z</dc:date>
    </item>
    <item>
      <title>Hi Ying, </title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107706#M25325</link>
      <description>&lt;P&gt;Hi Ying,&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thank you so much. It's clear for me, too.&lt;/P&gt;

&lt;P&gt;I'm going to migration my work from PXE 2011 to PXE 2016. I may have more questions in future.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Best Regards,&lt;/P&gt;

&lt;P&gt;Tam.&lt;/P&gt;</description>
      <pubDate>Thu, 05 May 2016 02:38:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/IPP-dynamic-linking-with-dispatching-disabled/m-p/1107706#M25325</guid>
      <dc:creator>Tam_N_1</dc:creator>
      <dc:date>2016-05-05T02:38:36Z</dc:date>
    </item>
  </channel>
</rss>

