Skip to content

Commit 7b294a9

Browse files
authored
Move common.h back to the top of the file so that SKYLAKEX (from config.h) is defined in time
1 parent fa9a30b commit 7b294a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

kernel/x86_64/sgemm_direct_skylakex.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
/* the direct sgemm code written by Arjan van der Ven */
2-
2+
#include "common.h"
33

44
#if defined(SKYLAKEX) || defined (COOPERLAKE)
55

66
#include <immintrin.h>
7-
#include "common.h"
7+
88

99
/*
1010
* "Direct sgemm" code. This code operates directly on the inputs and outputs
@@ -472,7 +472,7 @@ void CNAME (BLASLONG M, BLASLONG N, BLASLONG K, float * __restrict A, BLASLONG s
472472
}
473473
}
474474
#else
475-
#include "common.h"
475+
476476
void CNAME (BLASLONG M, BLASLONG N, BLASLONG K, float * __restrict A, BLASLONG strideA, float * __restrict B, BLASLONG strideB , float * __restrict R, BLASLONG strideR)
477477
{}
478478
#endif

0 commit comments

Comments
 (0)