From 0934568d9cbc0e7a7d95c00fab807d95d1168bed Mon Sep 17 00:00:00 2001 From: Martin Kroeker Date: Fri, 12 Mar 2021 12:42:05 +0100 Subject: [PATCH] Move includes under the ifdef for compilers w/o intrinsics support --- kernel/x86_64/sgemm_direct_skylakex.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/kernel/x86_64/sgemm_direct_skylakex.c b/kernel/x86_64/sgemm_direct_skylakex.c index aaadcf151..cc2ac5553 100644 --- a/kernel/x86_64/sgemm_direct_skylakex.c +++ b/kernel/x86_64/sgemm_direct_skylakex.c @@ -1,8 +1,11 @@ /* the direct sgemm code written by Arjan van der Ven */ + + +#if defined(SKYLAKEX) || defined (COOPERLAKE) + #include #include "common.h" -#if defined(SKYLAKEX) || defined (COOPERLAKE) /* * "Direct sgemm" code. This code operates directly on the inputs and outputs * of the sgemm call, avoiding the copies, memory realignments and threading,