Add cpuid detection of AMD Zen2 Matisse and Renoir

This commit is contained in:
Martin Kroeker 2020-07-28 09:03:52 +00:00 committed by GitHub
parent afdca268ab
commit ba27936ceb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -718,7 +718,7 @@ static gotoblas_t *get_coretype(void){
return &gotoblas_BARCELONA; //OS doesn't support AVX. Use old kernels. 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()) if(support_avx())
return &gotoblas_ZEN; return &gotoblas_ZEN;
else{ else{