summaryrefslogtreecommitdiff
path: root/driver
diff options
context:
space:
mode:
authorMartin Kroeker <martin@ruby.chemie.uni-freiburg.de>2019-03-12 16:09:55 +0100
committerGitHub <noreply@github.com>2019-03-12 16:09:55 +0100
commit04f2226ea6edd95decf888b67bbdd4a8de530b54 (patch)
treebc8a3357b30f3c3cb124e3b0f9caf18791b10a89 /driver
parentb1393c7a97e2da1b64e1f779bdf68b7af0924543 (diff)
downloadopenblas-04f2226ea6edd95decf888b67bbdd4a8de530b54.tar.gz
openblas-04f2226ea6edd95decf888b67bbdd4a8de530b54.tar.bz2
openblas-04f2226ea6edd95decf888b67bbdd4a8de530b54.zip
Add Intel Denverton
Diffstat (limited to 'driver')
-rw-r--r--driver/others/dynamic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver/others/dynamic.c b/driver/others/dynamic.c
index 99c9254ac..895bacb50 100644
--- a/driver/others/dynamic.c
+++ b/driver/others/dynamic.c
@@ -566,8 +566,8 @@ static gotoblas_t *get_coretype(void){
return &gotoblas_NEHALEM; //OS doesn't support AVX. Use old kernels.
}
}
- //Apollo Lake
- if (model == 12) {
+ //Apollo Lake or Denverton
+ if (model == 12 || model == 15) {
return &gotoblas_NEHALEM;
}
return NULL;