mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fixed indentation
This commit is contained in:
@@ -316,6 +316,7 @@ using std::ptrdiff_t;
|
||||
#include "src/Core/arch/SSE/PacketMath.h"
|
||||
#include "src/Core/arch/AVX/PacketMath.h"
|
||||
#include "src/Core/arch/AVX512/PacketMath.h"
|
||||
#include "src/Core/arch/AVX512/MathFunctions.h"
|
||||
#elif defined EIGEN_VECTORIZE_AVX
|
||||
// Use AVX for floats and doubles, SSE for integers
|
||||
#include "src/Core/arch/SSE/PacketMath.h"
|
||||
|
||||
@@ -54,11 +54,12 @@ template<> struct packet_traits<float> : default_packet_traits
|
||||
AlignedOnScalar = 1,
|
||||
size = 16,
|
||||
HasHalfPacket = 1,
|
||||
HasExp = 0,
|
||||
HasLog = 1,
|
||||
HasExp = 1,
|
||||
HasDiv = 1,
|
||||
HasBlend = 1,
|
||||
HasSqrt = 0,
|
||||
HasRsqrt = 0,
|
||||
HasSqrt = 1,
|
||||
HasRsqrt = 1,
|
||||
HasSelect = 1,
|
||||
HasEq = 1
|
||||
};
|
||||
@@ -72,11 +73,11 @@ template<> struct packet_traits<double> : default_packet_traits
|
||||
AlignedOnScalar = 1,
|
||||
size = 8,
|
||||
HasHalfPacket = 1,
|
||||
HasExp = 0,
|
||||
HasExp = 1,
|
||||
HasDiv = 1,
|
||||
HasBlend = 1,
|
||||
HasSqrt = 0,
|
||||
HasRsqrt = 0,
|
||||
HasSqrt = 1,
|
||||
HasRsqrt = EIGEN_FAST_MATH,
|
||||
HasSelect = 1,
|
||||
HasEq = 1
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user