Update dynamic.c
Second part of "support Intel Avolon via Nehalem kernel"
This commit is contained in:
parent
d4adc71406
commit
edae5b9300
|
@ -281,6 +281,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 Avolon
|
||||||
|
if (model == 13) {
|
||||||
|
openblas_warning(FALLBACK_VERBOSE, NEHALEM_FALLBACK);
|
||||||
|
return &gotoblas_NEHALEM;
|
||||||
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
case 0xf:
|
case 0xf:
|
||||||
|
|
Loading…
Reference in New Issue