You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BenchExec currently supports machines with several CPUs, CPUs with several NUMA nodes, NUMA nodes with several physical cores, and physical cores with several virtual cores. However, modern large CPUs add another layer: Certain cores of a NUMA node can share L3 cache, but have a separate L3 cache from other cores on the same NUMA node.
For performance and determinism, it is better if on such machines, core allocation takes the cache architecture into account, such that cores that share cache are assigned preferably to a run.
We can read this information from /sys/devices/system/cpu/cpuX/topology/die_cpus_list (docs), which is next to the files we use for retrieving the other topology information.
We should cross-check with hwloc-ls and hwloc-info that we get it right.
The text was updated successfully, but these errors were encountered:
BenchExec currently supports machines with several CPUs, CPUs with several NUMA nodes, NUMA nodes with several physical cores, and physical cores with several virtual cores. However, modern large CPUs add another layer: Certain cores of a NUMA node can share L3 cache, but have a separate L3 cache from other cores on the same NUMA node.
Example architectures:
For performance and determinism, it is better if on such machines, core allocation takes the cache architecture into account, such that cores that share cache are assigned preferably to a run.
We can read this information from
/sys/devices/system/cpu/cpuX/topology/die_cpus_list
(docs), which is next to the files we use for retrieving the other topology information.We should cross-check with
hwloc-ls
andhwloc-info
that we get it right.The text was updated successfully, but these errors were encountered: