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.
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.
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.
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.family == 4
means it's an 80486 (no performance monitoring)CPUID.family == 5
means it's a PentiumCPUID.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.
"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.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With