mirror of
https://gitlab.com/libeigen/eigen.git
synced 2024-12-15 07:10:37 +08:00
Disable usage of MMX with msvc.
This commit is contained in:
parent
e8cef383b7
commit
7ff5fadcc0
@ -529,15 +529,7 @@ ptranspose(PacketBlock<Packet8h,4>& kernel) {
|
||||
}
|
||||
|
||||
|
||||
#elif defined(EIGEN_VECTORIZE_SSE) && !EIGEN_ARCH_x86_64
|
||||
|
||||
} // end namespace internal
|
||||
} // end namespace Eigen
|
||||
|
||||
#include <mmintrin.h>
|
||||
|
||||
namespace Eigen {
|
||||
namespace internal {
|
||||
#elif defined(EIGEN_VECTORIZE_SSE) && (!EIGEN_ARCH_x86_64) && (!EIGEN_COMP_MSVC)
|
||||
|
||||
typedef struct {
|
||||
__m64 x;
|
||||
|
@ -128,12 +128,7 @@ template<> EIGEN_STRONG_INLINE Packet8h pcast<Packet8f, Packet8h>(const Packet8f
|
||||
return float2half(a);
|
||||
}
|
||||
|
||||
#elif defined(EIGEN_VECTORIZE_SSE) && !EIGEN_ARCH_x86_64
|
||||
|
||||
} // end namespace internal
|
||||
} // end namespace Eigen
|
||||
|
||||
#include <mmintrin.h>
|
||||
#elif defined(EIGEN_VECTORIZE_SSE) && (!EIGEN_ARCH_x86_64) && (!EIGEN_COMP_MSVC)
|
||||
|
||||
namespace Eigen {
|
||||
namespace internal {
|
||||
|
Loading…
Reference in New Issue
Block a user