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 ae53e3e commit e4e5042Copy full SHA for e4e5042
driver/others/dynamic.c
@@ -644,6 +644,21 @@ static gotoblas_t *get_coretype(void){
644
return NULL;
645
case 9:
646
case 8:
647
+ if (model == 12) { // Tiger Lake
648
+ if (support_avx512())
649
+ return &gotoblas_SKYLAKEX;
650
+ if(support_avx2()){
651
+ openblas_warning(FALLBACK_VERBOSE, HASWELL_FALLBACK);
652
+ return &gotoblas_HASWELL;
653
+ }
654
+ if(support_avx()) {
655
+ openblas_warning(FALLBACK_VERBOSE, SANDYBRIDGE_FALLBACK);
656
+ return &gotoblas_SANDYBRIDGE;
657
+ } else {
658
+ openblas_warning(FALLBACK_VERBOSE, NEHALEM_FALLBACK);
659
+ return &gotoblas_NEHALEM;
660
661
662
if (model == 14 ) { // Kaby Lake, Coffee Lake
663
if(support_avx2())
664
return &gotoblas_HASWELL;
0 commit comments