Add the A12-9800 to the dynamic arch detection.
This commit is contained in:
parent
d711588cf2
commit
a31511dcea
|
@ -354,6 +354,14 @@ static gotoblas_t *get_coretype(void){
|
|||
openblas_warning(FALLBACK_VERBOSE, BARCELONA_FALLBACK);
|
||||
return &gotoblas_BARCELONA; //OS doesn't support AVX. Use old kernels.
|
||||
}
|
||||
}else if(model == 5) { // EXCAVATOR
|
||||
if(support_avx())
|
||||
return &gotoblas_EXCAVATOR;
|
||||
else{
|
||||
openblas_warning(FALLBACK_VERBOSE, BARCELONA_FALLBACK);
|
||||
return &gotoblas_BARCELONA; //OS doesn't support AVX. Use old kernels.
|
||||
}
|
||||
|
||||
}else if(model == 0){
|
||||
if (exmodel == 1) {
|
||||
//AMD Trinity
|
||||
|
|
Loading…
Reference in New Issue