Find out how many hardware performance counters a CPU has
Asked Answered
P

1

8

On an Intel or AMD x86-64 system running Linux, where/how can I find out the number of hardware performance counters that my CPU has?

I would like to use the Linux perf tool to gather hardware performance counter data while executing some applications. The perf wiki's tutorial says that if I specify (using the -e flag to perf stat or perf record) more hardware events than there are performance counters in my CPU, then these events will be multiplexed over the counters during the execution, allowing them to all be tracked during a single perf command, but possibly reducing accuracy because not all counters are active all the time. (Note that I am concerned with hardware events here, such as for cache and TLB behavior - I know that a large/unlimited number of kernel software tracepoints can be tracked without inaccuracy).

If I find out my processor model, is there an Intel/AMD website where I can find this information? Is there a simple command that I can run on the system to check the number of hardware counters? I've examined the output of cat /proc/cpuinfo and x86info -a, but couldn't find this information.

Porky answered 17/1, 2014 at 7:4 Comment(0)
S
11

Regarding Intel processors, you can:

PAPI Version : 5.1.1.0

Vendor string and code : GenuineIntel (1)

Model string and code : Intel(R) Core(TM) i5-2520M CPU @ 2.50GHz (42)

CPU Revision : 7.000000

CPUID Info : Family: 6 Model: 42 Stepping: 7

CPU Max Megahertz : 2494

CPU Min Megahertz : 2494

Hdw Threads per core : 2

Cores per Socket : 2

NUMA Nodes : 1

CPUs per Node : 4

Total CPUs : 4

Running in a VM : no

Number Hardware Counters : 11

Max Multiplex Counters : 64

Sock answered 17/1, 2014 at 12:24 Comment(1)
To my understanding, the Number Hardware Counters : 11 is the sum of fixed counters and general-purpose counters which in many architectures are 3 and 8. So the Number of Hardware Counters on what we see above is 11 per core. Right?Eugenol

© 2022 - 2024 — McMap. All rights reserved.