Update dynamic.c

Move Avoton support to exmodel=4 where it belongs
This commit is contained in:
Martin Kroeker 2016-02-02 12:33:14 +01:00
parent 1a1f3245d6
commit 48599f0a3b
1 changed files with 5 additions and 5 deletions

View File

@ -261,6 +261,11 @@ static gotoblas_t *get_coretype(void){
return &gotoblas_NEHALEM; //OS doesn't support AVX. Use old kernels. return &gotoblas_NEHALEM; //OS doesn't support AVX. Use old kernels.
} }
} }
//Intel Avoton
if (model == 13) {
openblas_warning(FALLBACK_VERBOSE, NEHALEM_FALLBACK);
return &gotoblas_NEHALEM;
}
return NULL; return NULL;
case 5: case 5:
//Intel Broadwell //Intel Broadwell
@ -281,11 +286,6 @@ static gotoblas_t *get_coretype(void){
return &gotoblas_NEHALEM; //OS doesn't support AVX. Use old kernels. return &gotoblas_NEHALEM; //OS doesn't support AVX. Use old kernels.
} }
} }
//Intel Avoton
if (model == 13) {
openblas_warning(FALLBACK_VERBOSE, NEHALEM_FALLBACK);
return &gotoblas_NEHALEM;
}
return NULL; return NULL;
} }
case 0xf: case 0xf: