Skip to content

Commit fa3e9f2

Browse files
authored
Support AVX512-enabled Alder Lake
1 parent f7e8f9e commit fa3e9f2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

driver/others/dynamic.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,8 +708,11 @@ static gotoblas_t *get_coretype(void){
708708

709709
case 9:
710710
if (model == 7 || model == 10) { // Alder Lake
711+
if(support_avx512_bf16())
712+
return &gotoblas_COOPERLAKE;
713+
if (support_avx512())
714+
return &gotoblas_SKYLAKEX;
711715
if(support_avx2()){
712-
openblas_warning(FALLBACK_VERBOSE, HASWELL_FALLBACK);
713716
return &gotoblas_HASWELL;
714717
}
715718
if(support_avx()) {

0 commit comments

Comments
 (0)