<?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: Processor Types vs. Library Codes? in Intel® Integrated Performance Primitives</title>
    <link>https://community.intel.com/t5/Intel-Integrated-Performance/Processor-Types-vs-Library-Codes/m-p/904207#M13182</link>
    <description>&lt;FONT face="Tahoma" size="2"&gt;Many thanks Vladimir.&lt;/FONT&gt;&lt;BR /&gt;</description>
    <pubDate>Tue, 15 Apr 2008 10:24:34 GMT</pubDate>
    <dc:creator>dug1</dc:creator>
    <dc:date>2008-04-15T10:24:34Z</dc:date>
    <item>
      <title>Processor Types vs. Library Codes?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Processor-Types-vs-Library-Codes/m-p/904204#M13179</link>
      <description>&lt;FONT face="Tahoma" size="2"&gt;Hi there,&lt;BR /&gt;&lt;BR /&gt;We are getting a bit confused about which ProcessorType goes with which Library Identification code, mainly with the latest processors.&lt;BR /&gt;&lt;BR /&gt;Specifically, we got a new machine with a Core 2 Duo CPU E8200 2.67 GHz. When we used the ippGetCpuType() function, it returned '44' which is &lt;/FONT&gt;&lt;FONT face="Tahoma" size="2"&gt;ippCpuSSSE3 and not &lt;/FONT&gt;&lt;FONT face="Tahoma" size="2"&gt;ippCpuCore2Duo as we would have expected. &lt;BR /&gt;&lt;BR /&gt;Could someone please clarify which Library Identification Code should go with which Processor ID when returned from ippGetCpuType()? Please correct me if my assumptions are wrong.&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT face="Tahoma" size="2"&gt;&lt;BR /&gt;Processor ID - Library ID Code&lt;BR /&gt;ippCpuUnknown - n/a&lt;BR /&gt;ippCpuPP - pX&lt;BR /&gt;ippCpuPMX - pX&lt;BR /&gt;ippCpuPPR - pX&lt;BR /&gt;ippCpuPII - pX&lt;BR /&gt;ippCpuPIII - a6&lt;BR /&gt;ippCpuP4 - w7&lt;BR /&gt;ippCpuP4HT - w7&lt;BR /&gt;ippCpuP4HT2 - t7&lt;BR /&gt;ippCpuCentrino - w7&lt;BR /&gt;ippCpuCoreSolo - v8&lt;BR /&gt;ippCpuCoreDuo - v8&lt;BR /&gt;ippCpuITP - a6&lt;BR /&gt;ippCpuITP2 - a6&lt;BR /&gt;ippCpuEM64T - t7&lt;BR /&gt;ippCpuC2D - p8&lt;BR /&gt;ippCpuC2Q - p8&lt;BR /&gt;ippCpuNehalem - ?&lt;BR /&gt;ippCpuBonnell - ?&lt;BR /&gt;ippCpuNext - ?&lt;BR /&gt;ippCpuSSE - ?&lt;BR /&gt;ippCpuSSE2 - ?&lt;BR /&gt;ippCpuSSE3 - ?&lt;BR /&gt;ippCpuSSSE3 - ?&lt;BR /&gt;ippCpuSSE41 - ?&lt;BR /&gt;ippCpuSSE42 - ?&lt;BR /&gt;ippCpuX8664 - ?&lt;BR /&gt;&lt;BR /&gt;Many Thanks,&lt;BR /&gt;dug.&lt;BR /&gt;&lt;/FONT&gt;</description>
      <pubDate>Mon, 14 Apr 2008 17:20:44 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Processor-Types-vs-Library-Codes/m-p/904204#M13179</guid>
      <dc:creator>dug1</dc:creator>
      <dc:date>2008-04-14T17:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Processor Types vs. Library Codes?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Processor-Types-vs-Library-Codes/m-p/904205#M13180</link>
      <description>&lt;FONT face="Tahoma" size="2"&gt;I found a table on a previous post that gave the library for each processor type for most of the older processors, which has helped me fill out the list somehwat:&lt;BR /&gt;&lt;BR /&gt;  case: ippCpuUnknown:   return CPU_PX; &lt;BR /&gt;  case: ippCpuPP:     return CPU_PX;&lt;BR /&gt;  case: ippCpuPMX:    return CPU_PX;&lt;BR /&gt;  case: ippCpuPPR:    return CPU_PX;&lt;BR /&gt;  case: ippCpuPII:    return CPU_PX;&lt;BR /&gt;  case: ippCpuPIII:    return CPU_A6;&lt;BR /&gt;  case: ippCpuP4:     return CPU_W7;&lt;BR /&gt;  case: ippCpuP4HT:    return CPU_W7;&lt;BR /&gt;  case: ippCpuP4HT2:    return CPU_T7;&lt;BR /&gt;  case: ippCpuCentrino:   return CPU_W7;&lt;BR /&gt;  case: ippCpuCoreSolo:   return CPU_V8;&lt;BR /&gt;  case: ippCpuCoreDuo:   return CPU_V8;&lt;BR /&gt;  case: ippCpuITP:    return CPU_I7;&lt;BR /&gt;  case: ippCpuITP2:    return CPU_I7;&lt;BR /&gt;  case: ippCpuEM64T:    return CPU_M7;&lt;BR /&gt;  &lt;FONT color="#ff0000"&gt;case: ippCpuC2D:    return;&lt;BR /&gt;  case: ippCpuC2Q:    return;&lt;BR /&gt;  case: ippCpuNehalem:   return;&lt;BR /&gt;  case: ippCpuBonnell:   return;&lt;/FONT&gt;&lt;BR /&gt;  case: ippCpuNext:    return CPU_V8;&lt;BR /&gt;  case: ippCpuSSE:    return CPU_A6;&lt;BR /&gt;  case: ippCpuSSE2:    return CPU_W7;&lt;BR /&gt;  case: ippCpuSSE3:    return CPU_T7;&lt;BR /&gt;&amp;amp;nb
sp;  &lt;FONT color="#ff0000"&gt;case: ippCpuSSSE3:    return;        &lt;BR /&gt;  case: ippCpuSSE41:    return;&lt;BR /&gt;  case: ippCpuSSE42:    return;&lt;/FONT&gt;&lt;BR /&gt;  case: ippCpuX8664:    return CPU_M7;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I would still like to know what the coressponding library codes should be for the following processor types:&lt;BR /&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT face="Tahoma" size="2"&gt;&lt;FONT color="#ff0000"&gt;i&lt;/FONT&gt;&lt;FONT color="#ff0000"&gt;ppCpuC2D&lt;BR /&gt;ippCpuC2Q&lt;BR /&gt;ippCpuNehalem&lt;BR /&gt;ippCpuBonnell&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#ff0000"&gt;&lt;BR /&gt;&lt;/FONT&gt;&lt;FONT color="#ff0000" face="Tahoma" size="2"&gt;ippCpuSSSE3&lt;BR /&gt;ippCpuSSE41&lt;BR /&gt;ippCpuSSE42&lt;BR /&gt;&lt;BR /&gt;&lt;FONT color="#000000"&gt;Thanks.&lt;/FONT&gt;&lt;BR /&gt;&lt;/FONT&gt;</description>
      <pubDate>Tue, 15 Apr 2008 08:37:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Processor-Types-vs-Library-Codes/m-p/904205#M13180</guid>
      <dc:creator>dug1</dc:creator>
      <dc:date>2008-04-15T08:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: Processor Types vs. Library Codes?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Processor-Types-vs-Library-Codes/m-p/904206#M13181</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;IPP 5.3 update 2 dispatcher should select the following processor specific libraries:&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt; case ippCpuC2D: V8&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt; case ippCpuC2Q: V8&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt; case ippCpuBonnell: V8&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt; case ippCpuSSSE3: V8&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt; case ippCpuSSE41: P8&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt; case ippCpuSSE42: P8&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt; case ippCpuNehalem: P8&lt;P&gt;&lt;/P&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;
&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt; Vladimir&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2008 09:42:07 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Processor-Types-vs-Library-Codes/m-p/904206#M13181</guid>
      <dc:creator>Vladimir_Dudnik</dc:creator>
      <dc:date>2008-04-15T09:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: Processor Types vs. Library Codes?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Processor-Types-vs-Library-Codes/m-p/904207#M13182</link>
      <description>&lt;FONT face="Tahoma" size="2"&gt;Many thanks Vladimir.&lt;/FONT&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 15 Apr 2008 10:24:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Processor-Types-vs-Library-Codes/m-p/904207#M13182</guid>
      <dc:creator>dug1</dc:creator>
      <dc:date>2008-04-15T10:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Processor Types vs. Library Codes?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Processor-Types-vs-Library-Codes/m-p/904208#M13183</link>
      <description>Hi Vladimir!&lt;BR /&gt;&lt;BR /&gt;Can you write here the associations for the em64t libraries too? I saw that there are four of them MX, M7, U8, Y8, but unfortunatelly I don't know, when to use which. I think it would be nice to have a function which gives back the architecture for a given CPU type.&lt;BR /&gt;Best Regards,&lt;BR /&gt;Miklos&lt;BR /&gt;</description>
      <pubDate>Tue, 03 Jun 2008 07:55:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Processor-Types-vs-Library-Codes/m-p/904208#M13183</guid>
      <dc:creator>Miklós_Szeles</dc:creator>
      <dc:date>2008-06-03T07:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Processor Types vs. Library Codes?</title>
      <link>https://community.intel.com/t5/Intel-Integrated-Performance/Processor-Types-vs-Library-Codes/m-p/904209#M13184</link>
      <description>&lt;DIV style="margin:0px;"&gt;
&lt;DIV id="quote_reply" style="width: 100%; margin-top: 5px;"&gt;
&lt;DIV style="margin-left:2px;margin-right:2px;"&gt;Quoting - &lt;A href="https://community.intel.com/en-us/profile/212664"&gt;dug&lt;/A&gt;&lt;/DIV&gt;
&lt;DIV style="background-color:#E5E5E5; padding:5px;border: 1px; border-style: inset;margin-left:2px;margin-right:2px;"&gt;&lt;EM&gt; &lt;SPAN style="font-family: Tahoma; font-size: x-small;"&gt;I found a table on a previous post that gave the library for each processor type for most of the older processors, which has helped me fill out the list somehwat:&lt;BR /&gt;&lt;BR /&gt; case: ippCpuUnknown:   return CPU_PX; &lt;BR /&gt; case: ippCpuPP:     return CPU_PX;&lt;BR /&gt; case: ippCpuPMX:    return CPU_PX;&lt;BR /&gt; case: ippCpuPPR:    return CPU_PX;&lt;BR /&gt; case: ippCpuPII:    return CPU_PX;&lt;BR /&gt; case: ippCpuPIII:    return CPU_A6;&lt;BR /&gt; case: ippCpuP4:     return CPU_W7;&lt;BR /&gt; case: ippCpuP4HT:    return CPU_W7;&lt;BR /&gt; case: ippCpuP4HT2:    return CPU_T7;&lt;BR /&gt; case: ippCpuCentrino:   return CPU_W7;&lt;BR /&gt; case: ippCpuCoreSolo:   return CPU_V8;&lt;BR /&gt; case: ippCpuCoreDuo:   return CPU_V8;&lt;BR /&gt; case: ippCpuITP:    return CPU_I7;&lt;BR /&gt; case: ippCpuITP2:    return CPU_I7;&lt;BR /&gt; case: ippCpuEM64T:    return CPU_M7;&lt;BR /&gt; &lt;SPAN style="color: #ff0000;"&gt;case: ippCpuC2D:    return;&lt;BR /&gt; case: ippCpuC2Q:    return;&lt;BR /&gt; case: ippCpuNehalem:   return;&lt;BR /&gt; case: ippCpuBonnell:   return;&lt;/SPAN&gt;&lt;BR /&gt; case: ippCpuNext:    return CPU_V8;&lt;BR /&gt; case: ippCpuSSE:    return CPU_A6;&lt;BR /&gt; case: ippCpuSSE2:    return CPU_W7;&lt;BR /&gt; case: ippCpuSSE3:    return CPU_T7;&lt;BR /&gt;&amp;amp;nb sp;  &lt;SPAN style="color: #ff0000;"&gt;case: ippCpuSSSE3:    return;        &lt;BR /&gt; case: ippCpuSSE41:    return;&lt;BR /&gt; case: ippCpuSSE42:    return;&lt;/SPAN&gt;&lt;BR /&gt; case: ippCpuX8664:    return CPU_M7;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;I would still like to know what the coressponding library codes should be for the following processor types:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Tahoma; font-size: x-small;"&gt;&lt;SPAN style="color: #ff0000;"&gt;i&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000;"&gt;ppCpuC2D&lt;BR /&gt;ippCpuC2Q&lt;BR /&gt;ippCpuNehalem&lt;BR /&gt;ippCpuBonnell&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="font-family: Tahoma; color: #ff0000; font-size: x-small;"&gt;ippCpuSSSE3&lt;BR /&gt;ippCpuSSE41&lt;BR /&gt;ippCpuSSE42&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;Thanks.&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt; &lt;/EM&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;BR /&gt;&lt;BR /&gt;Note that:&lt;BR /&gt;&lt;BR /&gt;case ippCpuCoreDuo: return CPU_V8;&lt;BR /&gt;&lt;BR /&gt;is incorrect and that it should be:&lt;BR /&gt;&lt;BR /&gt;case ippCpuCoreDuo:		return CPU_T7;&lt;BR /&gt;</description>
      <pubDate>Fri, 13 Mar 2009 17:19:13 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Integrated-Performance/Processor-Types-vs-Library-Codes/m-p/904209#M13184</guid>
      <dc:creator>dug</dc:creator>
      <dc:date>2009-03-13T17:19:13Z</dc:date>
    </item>
  </channel>
</rss>

