Implement pcplflip, palign, predux and the likes from AVC/complexes

This commit is contained in:
Gael Guennebaud
2014-03-27 14:47:00 +01:00
parent a419cea4a0
commit 052aedd394
3 changed files with 37 additions and 55 deletions

View File

@@ -303,9 +303,10 @@ using std::ptrdiff_t;
#if defined EIGEN_VECTORIZE_AVX
// Use AVX for floats and doubles, SSE for integers
#include "src/Core/arch/SSE/PacketMath.h"
#include "src/Core/arch/SSE/Complex.h"
#include "src/Core/arch/AVX/PacketMath.h"
#include "src/Core/arch/AVX/Complex.h"
#include "src/Core/arch/SSE/PacketMath.h" // For integers
#elif defined EIGEN_VECTORIZE_SSE
#include "src/Core/arch/SSE/PacketMath.h"
#include "src/Core/arch/SSE/MathFunctions.h"