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.
1 parent 26e87ac commit cbfd3c8Copy full SHA for cbfd3c8
driver/others/dynamic.c
@@ -621,6 +621,22 @@ static gotoblas_t *get_coretype(void){
621
return &gotoblas_NEHALEM;
622
}
623
624
+ if (model == 10) {
625
+ // Ice Lake SP
626
+ if(support_avx512_bf16())
627
+ return &gotoblas_COOPERLAKE;
628
+ if (support_avx512())
629
+ return &gotoblas_SKYLAKEX;
630
+ if(support_avx2())
631
+ return &gotoblas_HASWELL;
632
+ if(support_avx()) {
633
+ openblas_warning(FALLBACK_VERBOSE, SANDYBRIDGE_FALLBACK);
634
+ return &gotoblas_SANDYBRIDGE;
635
+ } else {
636
+ openblas_warning(FALLBACK_VERBOSE, NEHALEM_FALLBACK);
637
+ return &gotoblas_NEHALEM;
638
+ }
639
640
return NULL;
641
case 7:
642
if (model == 10) // Goldmont Plus
0 commit comments