aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Core
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2018-12-06 00:13:26 +0100
committerGravatar Gael Guennebaud <g.gael@free.fr>2018-12-06 00:13:26 +0100
commit3fba59ea594eb26446352cb28813b38921439f23 (patch)
treed919a33dc6270bcf4502ea83d9f441805365bc7b /Eigen/Core
parent1ac2695ef7e1fc8e147a37ad97391d7a2941c696 (diff)
temporarily re-disable SSE/AVX vectorization of complex<> on AVX512 -> this needs to be fixed though!
Diffstat (limited to 'Eigen/Core')
-rw-r--r--Eigen/Core7
1 files changed, 5 insertions, 2 deletions
diff --git a/Eigen/Core b/Eigen/Core
index bc6cf8a96..0e23247d3 100644
--- a/Eigen/Core
+++ b/Eigen/Core
@@ -154,10 +154,13 @@ using std::ptrdiff_t;
#if defined EIGEN_VECTORIZE_AVX512
#include "src/Core/arch/SSE/PacketMath.h"
#include "src/Core/arch/SSE/TypeCasting.h"
- #include "src/Core/arch/SSE/Complex.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/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/SSE/MathFunctions.h"
#include "src/Core/arch/AVX/MathFunctions.h"