Merge pull request #498 from stweil/lstm

Fix 32 bit builds (missing _mm256_extract_epi64)
This commit is contained in:
zdenop 2016-11-24 08:47:19 +01:00 committed by GitHub
commit 19978a282c

View File

@ -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>