Update dynamic.c
authorMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>
Thu, 14 Jul 2016 10:22:55 +0000 (12:22 +0200)
committerGitHub <noreply@github.com>
Thu, 14 Jul 2016 10:22:55 +0000 (12:22 +0200)
Add Braswell (extended model 4, model 12) N3150 as Nehalem

driver/others/dynamic.c

index 9e8cce4..18f85c3 100644 (file)
@@ -261,8 +261,8 @@ static gotoblas_t *get_coretype(void){
            return &gotoblas_NEHALEM; //OS doesn't support AVX. Use old kernels.
          }
        }
-       //Intel Avoton
-       if (model == 13) { 
+       //Intel Braswell / Avoton
+       if (model == 12 || model == 13) { 
          openblas_warning(FALLBACK_VERBOSE, NEHALEM_FALLBACK); 
          return &gotoblas_NEHALEM;
        }