mirror of
https://github.com/xmrig/xmrig.git
synced 2025-12-07 07:55:04 -05:00
Fixed threads auto-config on Zen5
This commit is contained in:
@@ -326,7 +326,8 @@ void xmrig::HwlocCpuInfo::processTopLevelCache(hwloc_obj_t cache, const Algorith
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (scratchpad == 2 * oneMiB) {
|
// This code is supposed to run only on Intel CPUs
|
||||||
|
if ((vendor() == VENDOR_INTEL) && (scratchpad == 2 * oneMiB)) {
|
||||||
if (L2 && (cores.size() * oneMiB) == L2 && L2_associativity == 16 && L3 >= L2) {
|
if (L2 && (cores.size() * oneMiB) == L2 && L2_associativity == 16 && L3 >= L2) {
|
||||||
L3 = L2;
|
L3 = L2;
|
||||||
extra = L2;
|
extra = L2;
|
||||||
|
|||||||
Reference in New Issue
Block a user