Recognize other AVX2-capable Zhaoxin cpus

This commit is contained in:
Martin Kroeker
2026-04-25 19:18:28 +02:00
committed by GitHub
parent 9019f9b6ff
commit feca8f994d
+6
View File
@@ -951,9 +951,15 @@ static gotoblas_t *get_coretype(void){
else
return &gotoblas_DUNNINGTON;
default:
if (support_avx2())
return &gotoblas_ZEN;
else
return &gotoblas_NEHALEM;
}
default:
if (support_avx2())
return &gotoblas_ZEN;
else
return &gotoblas_NEHALEM;
}
}