Skip to content

Commit 0934568

Browse files
authored
Move includes under the ifdef for compilers w/o intrinsics support
1 parent b1215f2 commit 0934568

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

kernel/x86_64/sgemm_direct_skylakex.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
/* the direct sgemm code written by Arjan van der Ven */
2+
3+
4+
#if defined(SKYLAKEX) || defined (COOPERLAKE)
5+
26
#include <immintrin.h>
37
#include "common.h"
48

5-
#if defined(SKYLAKEX) || defined (COOPERLAKE)
69
/*
710
* "Direct sgemm" code. This code operates directly on the inputs and outputs
811
* of the sgemm call, avoiding the copies, memory realignments and threading,

0 commit comments

Comments
 (0)