Browse Source

Update dynamic.c

Add Braswell (extended model 4, model 12) N3150 as Nehalem
tags/v0.2.19^2
Martin Kroeker GitHub 9 years ago
parent
commit
7de829f713
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      driver/others/dynamic.c

+ 2
- 2
driver/others/dynamic.c View 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;
}


Loading…
Cancel
Save