Skip to content

Commit

Permalink
Update dynamic.c
Browse files Browse the repository at this point in the history
Add Braswell (extended model 4, model 12) N3150 as Nehalem
  • Loading branch information
martin-frbg authored Jul 14, 2016
1 parent 9b69d8a commit 7de829f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions driver/others/dynamic.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 7de829f

Please sign in to comment.