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 dbdb686 + 2c62096 commit ed8b377Copy full SHA for ed8b377
driver/others/dynamic.c
@@ -855,15 +855,19 @@ static gotoblas_t *get_coretype(void){
855
openblas_warning(FALLBACK_VERBOSE, BARCELONA_FALLBACK);
856
return &gotoblas_BARCELONA; //OS doesn't support AVX. Use old kernels.
857
}
858
- } else if (exfamily == 10) {
+ } else if (exfamily == 10) {
859
+ if(support_avx512_bf16())
860
+ return &gotoblas_COOPERLAKE;
861
+ if(support_avx512())
862
+ return &gotoblas_SKYLAKEX;
863
if(support_avx())
864
return &gotoblas_ZEN;
865
else{
866
867
868
869
}else {
- return &gotoblas_BARCELONA;
870
+ return NULL;
871
872
873
0 commit comments