Skip to content

Commit

Permalink
Fix 32 bit builds (missing _mm256_extract_epi64)
Browse files Browse the repository at this point in the history
Signed-off-by: Stefan Weil <sw@weilnetz.de>
  • Loading branch information
stweil committed Nov 24, 2016
1 parent addb67c commit b54894a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion arch/dotproductavx.cpp
Expand Up @@ -16,8 +16,9 @@
// limitations under the License.
///////////////////////////////////////////////////////////////////////

#if !defined(__AVX__)
#if !defined(__AVX__) || defined(__i386__)
// Implementation for non-avx archs.
// Also used for 32 bit AVX archs because of missing _mm256_extract_epi64.

#include "dotproductavx.h"
#include <stdio.h>
Expand Down

0 comments on commit b54894a

Please sign in to comment.