Skip to content

Commit a51cae6

Browse files
authored
Merge pull request #3140 from martin-frbg/issue3139
Fix compilation on older x86_64 targets with old compilers that lack intrinsics support
2 parents d30b943 + 0934568 commit a51cae6

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)