Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I find out what "processor family" an Intel processor is under?

In the Intel manual, there are tables containing listings of Performance-Monitoring Counters, but they are extremely specific to the particular processor family.

For example, one table lists the counters of P6 Family, and another lists for Pentium.

In Ubuntu, if I do cat /proc/cpuinfo, I get a line that says cpu family, but it is a single number. Is there some mapping between this number and Intel's notion of a processor family?

I also looked this page from Intel, but it does not even mention the word "family".

Incidentally, I am on an X3470 so I thought maybe Xeon was the family, but the manual does not list it.

like image 745
merlin2011 Avatar asked Mar 12 '14 06:03

merlin2011


People also ask

What is the CPU family?

Processors are grouped into families. Processors within a given family generally have similar feature sets. Processor vendors define processor families. You can distinguish different processor versions within the same family by comparing the processors' model, stepping level, and extended features.

How can I know what processor I have?

Head to Control Panel > System and Security > System to open it. You can also press Windows+Pause on your keyboard to instantly open this window. Your computer's CPU model and speed are displayed to the right of “Processor” under the System heading.


2 Answers

For "X3470" specifically, it is based on the Nehalem micro-architecture.

In general; for Intel 80x86 and only Intel 80x86 (excluding things like Itanium and Xeon Phi/KNC, and all other 80x86 CPU manufacturers - don't forget to check the "vendor ID" string in CPUID):

  • CPUID not supported means it's 80486 or older (there are ways to tell which, but you won't care as there's no performance monitoring)
  • CPUID.family == 4 means it's an 80486 (no performance monitoring)
  • CPUID.family == 5 means it's a Pentium
  • CPUID.family == 15 means it's a "Netburst" (Pentium 4, Pentium D, Pentium EE, and some Celerons and not others, and some Xeons and not others)
  • CPUID.family == 6 means it's anything from Pentium Pro (1995) to the latest Haswell (2014) except "Netburst"

For CPUID.family == 6 you have to check the CPUID.model field. You can find the ranges of model numbers by painstakingly trawling through all of the various specification updates while muttering obscenities under your breath (note: this is the traditional method). I don't know if there's a less insane way of deciphering it.

Please note that there's also "marketing nonsense" (things intended for salespeople that are completely useless for software developers). This includes CPU brand names (Xeon, Celeron, Core i7, etc) and CPU model names ("X3470"). The page you were looking at is "marketing nonsense" only.

like image 142
Brendan Avatar answered Oct 14 '22 12:10

Brendan


"Family" is an ambiguous concept. The number returned by /proc/cpuinfo is the "family" field from the CPUID instruction, which gives a vague idea of what processors are related to this one, and is really only useful for doing a table lookup to select what name to display for processors that don't support the "processor brand string" extended CPUID instruction.

You could try parsing the "processor brand string" for the information you want, but you're probably better off checking the extended CPUID instructions to see if the counters you're looking for are supported.

like image 24
Mark Avatar answered Oct 14 '22 12:10

Mark