mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-11 11:19:02 +08:00
Disable the use of MMX instructions since the code is broken on many platforms
This commit is contained in:
parent
f2c86384f4
commit
3a5d6a3c38
@ -529,7 +529,9 @@ ptranspose(PacketBlock<Packet8h,4>& kernel) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#elif defined(EIGEN_VECTORIZE_SSE) && (!EIGEN_ARCH_x86_64) && (!EIGEN_COMP_MSVC)
|
// Disable the following code since it's broken on too many platforms / compilers.
|
||||||
|
//#elif defined(EIGEN_VECTORIZE_SSE) && (!EIGEN_ARCH_x86_64) && (!EIGEN_COMP_MSVC)
|
||||||
|
#elif 0
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
__m64 x;
|
__m64 x;
|
||||||
|
@ -128,7 +128,9 @@ template<> EIGEN_STRONG_INLINE Packet8h pcast<Packet8f, Packet8h>(const Packet8f
|
|||||||
return float2half(a);
|
return float2half(a);
|
||||||
}
|
}
|
||||||
|
|
||||||
#elif defined(EIGEN_VECTORIZE_SSE) && (!EIGEN_ARCH_x86_64) && (!EIGEN_COMP_MSVC)
|
// Disable the following code since it's broken on too many platforms / compilers.
|
||||||
|
//#elif defined(EIGEN_VECTORIZE_SSE) && (!EIGEN_ARCH_x86_64) && (!EIGEN_COMP_MSVC)
|
||||||
|
#elif 0
|
||||||
|
|
||||||
template <>
|
template <>
|
||||||
struct type_casting_traits<Eigen::half, float> {
|
struct type_casting_traits<Eigen::half, float> {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user