Move includes under the ifdef for compilers w/o intrinsics support

This commit is contained in:
Martin Kroeker 2021-03-12 12:42:05 +01:00 committed by GitHub
parent b1215f2f8c
commit 0934568d9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -1,8 +1,11 @@
/* the direct sgemm code written by Arjan van der Ven */
#if defined(SKYLAKEX) || defined (COOPERLAKE)
#include <immintrin.h>
#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,