cancel
Showing results for 
Search instead for 
Did you mean: 

Archives Discussions

regnak2012
Journeyman III

6276 16 core AMD CPU vs NUMA

Hi,

How many cores are part of a NUMA node in the 16 core AMD processors, is it 8? I'm planning a VMware environment on a server with 2 x 6276 CPU's and 256GB Ram and need to know when a virtual machine spans NUMA nodes. This has an impact on performance.

Thank you

Michael.

0 Likes
1 Solution
avk
Adept III

Yes, Michael, every node in the 16-core AMD Opterons has 8 cores. BTW, this information can be obtained by requesting CPUID.8000_001E and inspecting ECX register, 10..8 bits. The count of nodes is encoded in "minus - 1" form, so 0 means 1, 1 means 2, etc. After this, you can divide the logical processor count (CPUID.0000_0001.EBX[23..16]) by the node count, and voila - you get the number of cores per node.

View solution in original post

2 Replies
avk
Adept III

Yes, Michael, every node in the 16-core AMD Opterons has 8 cores. BTW, this information can be obtained by requesting CPUID.8000_001E and inspecting ECX register, 10..8 bits. The count of nodes is encoded in "minus - 1" form, so 0 means 1, 1 means 2, etc. After this, you can divide the logical processor count (CPUID.0000_0001.EBX[23..16]) by the node count, and voila - you get the number of cores per node.

Thanks avk!

Much appreciated,

Regards,

Mike

0 Likes