Update dynamic.c

Add Braswell (extended model 4, model 12) N3150 as Nehalem
This commit is contained in:
Martin Kroeker 2016-07-14 12:22:55 +02:00 committed by GitHub
parent 9b69d8a8e5
commit 7de829f713
1 changed files with 2 additions and 2 deletions

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;
}