From 7de829f713dcf590c2877ca5e9674ff5a3060852 Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Thu, 14 Jul 2016 12:22:55 +0200 Subject: [PATCH] Update dynamic.c Add Braswell (extended model 4, model 12) N3150 as Nehalem --- driver/others/dynamic.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/driver/others/dynamic.c b/driver/others/dynamic.c index 9e8cce438..18f85c316 100644 --- a/driver/others/dynamic.c +++ b/driver/others/dynamic.c @@ -261,8 +261,8 @@ static gotoblas_t *get_coretype(void){ return &gotoblas_NEHALEM; //OS doesn't support AVX. Use old kernels. } } - //Intel Avoton - if (model == 13) { + //Intel Braswell / Avoton + if (model == 12 || model == 13) { openblas_warning(FALLBACK_VERBOSE, NEHALEM_FALLBACK); return &gotoblas_NEHALEM; }