aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Core
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-12-06 15:58:06 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-12-06 15:58:06 +0100
commitc53eececb0415834b961cb61cd466907261b4b2f (patch)
tree2fda50e7549fda68501e3a33634dfc2ccfac743a /Eigen/Core
parent3fba59ea594eb26446352cb28813b38921439f23 (diff)
Implement AVX512 vectorization of std::complex<float/double>
Diffstat (limited to 'Eigen/Core')
-rw-r--r--Eigen/Core8
1 files changed, 3 insertions, 5 deletions
diff --git a/Eigen/Core b/Eigen/Core
index 0e23247d3..759b1bb80 100644
--- a/Eigen/Core
+++ b/Eigen/Core
@@ -154,14 +154,12 @@ using std::ptrdiff_t;
#if defined EIGEN_VECTORIZE_AVX512
#include "src/Core/arch/SSE/PacketMath.h"
#include "src/Core/arch/SSE/TypeCasting.h"
- // FIXME: this needs to be fixed (compilation issue if included)
- // there is no reason to disable SSE/AVX vectorization
- // of complex<> while enabling AVX512.
- // #include "src/Core/arch/SSE/Complex.h"
+ #include "src/Core/arch/SSE/Complex.h"
#include "src/Core/arch/AVX/PacketMath.h"
#include "src/Core/arch/AVX/TypeCasting.h"
- // #include "src/Core/arch/AVX/Complex.h"
+ #include "src/Core/arch/AVX/Complex.h"
#include "src/Core/arch/AVX512/PacketMath.h"
+ #include "src/Core/arch/AVX512/Complex.h"
#include "src/Core/arch/SSE/MathFunctions.h"
#include "src/Core/arch/AVX/MathFunctions.h"
#include "src/Core/arch/AVX512/MathFunctions.h"