mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-12 03:39:01 +08:00
Fix compilation without vector engine available (e.g., x86 with SSE disabled):
-> ppolevl is required by ndtri even for the scalar path
This commit is contained in:
parent
3031d57200
commit
55b63d4ea3
@ -163,6 +163,8 @@ using std::ptrdiff_t;
|
|||||||
// Generic half float support
|
// Generic half float support
|
||||||
#include "src/Core/arch/Default/Half.h"
|
#include "src/Core/arch/Default/Half.h"
|
||||||
#include "src/Core/arch/Default/TypeCasting.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
|
#if defined EIGEN_VECTORIZE_AVX512
|
||||||
#include "src/Core/arch/SSE/PacketMath.h"
|
#include "src/Core/arch/SSE/PacketMath.h"
|
||||||
|
@ -12,8 +12,6 @@
|
|||||||
#ifndef EIGEN_MATH_FUNCTIONS_ALTIVEC_H
|
#ifndef EIGEN_MATH_FUNCTIONS_ALTIVEC_H
|
||||||
#define EIGEN_MATH_FUNCTIONS_ALTIVEC_H
|
#define EIGEN_MATH_FUNCTIONS_ALTIVEC_H
|
||||||
|
|
||||||
#include "../Default/GenericPacketMathFunctions.h"
|
|
||||||
|
|
||||||
namespace Eigen {
|
namespace Eigen {
|
||||||
|
|
||||||
namespace internal {
|
namespace internal {
|
||||||
|
@ -8,8 +8,6 @@
|
|||||||
#ifndef EIGEN_MATH_FUNCTIONS_NEON_H
|
#ifndef EIGEN_MATH_FUNCTIONS_NEON_H
|
||||||
#define EIGEN_MATH_FUNCTIONS_NEON_H
|
#define EIGEN_MATH_FUNCTIONS_NEON_H
|
||||||
|
|
||||||
#include "../Default/GenericPacketMathFunctions.h"
|
|
||||||
|
|
||||||
namespace Eigen {
|
namespace Eigen {
|
||||||
|
|
||||||
namespace internal {
|
namespace internal {
|
||||||
|
@ -15,8 +15,6 @@
|
|||||||
#ifndef EIGEN_MATH_FUNCTIONS_SSE_H
|
#ifndef EIGEN_MATH_FUNCTIONS_SSE_H
|
||||||
#define EIGEN_MATH_FUNCTIONS_SSE_H
|
#define EIGEN_MATH_FUNCTIONS_SSE_H
|
||||||
|
|
||||||
#include "../Default/GenericPacketMathFunctions.h"
|
|
||||||
|
|
||||||
namespace Eigen {
|
namespace Eigen {
|
||||||
|
|
||||||
namespace internal {
|
namespace internal {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user