The Intel Intrinsics Guide provides latency and bandwidth information at the bottom of several Intrinsics features that list performance metrics for multiple CPUIDs.
For example, the table in the Intrinsics manual looks like this for Intrinsic _mm_hadd_pd:
CPUID(s) Parameters Latency Throughput
0F_03 13 4
06_2A xmm1, xmm2 5 2
06_25/2C/1A/1E/1F/2E xmm1, xmm2 5 2
06_17/1D xmm1, xmm2 6 1
06_0F xmm1, xmm2 5 2
Now: How to determine which identifier my processor has?
I use Kubuntu 12.04 and try to use sudo dmidecode -t 4, as well as a small program cpuidfrom Ubuntu packages, but their output is not very useful.
I cannot find any of the lines listed in the Intrinsics Guide, wherever you are on the output commands above.
user1818760
source