Update dynamic.c and cpuid_x86.c for Intel Avoton.

Second part of "support Intel Avoton via Nehalem kernel"
This commit is contained in:
Martin Kroeker 2016-02-02 09:00:18 +01:00 committed by Zhang Xianyi
parent ff9388d625
commit 935356c34f
2 changed files with 8 additions and 0 deletions

View File

@ -1678,6 +1678,9 @@ int get_coretype(void){
#endif
else
return CORE_NEHALEM;
case 13:
// Avoton
return CORE_NEHALEM;
}
break;
case 5:

View File

@ -261,6 +261,11 @@ static gotoblas_t *get_coretype(void){
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;
case 5:
//Intel Broadwell