Browse Source

Add cpuid detection of AMD Zen2 Matisse and Renoir

pull/2743/head
Martin Kroeker GitHub 5 years ago
parent
commit
ba27936ceb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      driver/others/dynamic.c

+ 1
- 1
driver/others/dynamic.c View File

@@ -718,7 +718,7 @@ static gotoblas_t *get_coretype(void){
return &gotoblas_BARCELONA; //OS doesn't support AVX. Use old kernels.
}
}
} else if (exfamily == 9) {
} else if (exfamily == 9 || exfamily == 23 || exfamily == 25) {
if(support_avx())
return &gotoblas_ZEN;
else{


Loading…
Cancel
Save