We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ea1f395 + d0ec432 commit 504310eCopy full SHA for 504310e
cpuid_x86.c
@@ -1452,6 +1452,8 @@ int get_cpuname(void){
1452
switch (model) {
1453
case 1:
1454
// AMD Ryzen
1455
+ case 8:
1456
+ // AMD Ryzen2
1457
if(support_avx())
1458
#ifndef NO_AVX2
1459
return CPUTYPE_ZEN;
driver/others/dynamic.c
@@ -607,7 +607,7 @@ static gotoblas_t *get_coretype(void){
607
}
608
609
} else if (exfamily == 8) {
610
- if (model == 1) {
+ if (model == 1 || model == 8) {
611
612
return &gotoblas_ZEN;
613
else{
0 commit comments