From 55b63d4ea3a44c7732973f927bb3ac048a05f1d8 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Thu, 5 Sep 2019 18:16:46 +0200 Subject: Fix compilation without vector engine available (e.g., x86 with SSE disabled): -> ppolevl is required by ndtri even for the scalar path --- Eigen/Core | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Eigen/Core') diff --git a/Eigen/Core b/Eigen/Core index 9d8f8fce8..e3d03f674 100644 --- a/Eigen/Core +++ b/Eigen/Core @@ -163,6 +163,8 @@ using std::ptrdiff_t; // Generic half float support #include "src/Core/arch/Default/Half.h" #include "src/Core/arch/Default/TypeCasting.h" +// This file provides generic implementations valid for scalar as well +#include "src/Core/arch/Default/GenericPacketMathFunctions.h" #if defined EIGEN_VECTORIZE_AVX512 #include "src/Core/arch/SSE/PacketMath.h" -- cgit v1.2.3