aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/src/Core/PacketMath.h
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-04-12 17:37:27 +0000
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2008-04-12 17:37:27 +0000
commitab4046970bd4e7772287ef882334b8be26ea86da (patch)
tree6ddf1ea57dd71b933d3ab0b30500d7143c720abb /Eigen/src/Core/PacketMath.h
parentdcebc46cdcd29fa65449c6d3215f30a28ec0a8c8 (diff)
* Add fixed-size template versions of corner(), start(), end().
* Use them to write an unrolled path in echelon.cpp, as an experiment before I do this LU module. * For floating-point types, make ei_random() use an amplitude of 1.
Diffstat (limited to 'Eigen/src/Core/PacketMath.h')
-rw-r--r--Eigen/src/Core/PacketMath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Eigen/src/Core/PacketMath.h b/Eigen/src/Core/PacketMath.h
index 3697f262e..cc925b50c 100644
--- a/Eigen/src/Core/PacketMath.h
+++ b/Eigen/src/Core/PacketMath.h
@@ -79,7 +79,7 @@ inline float ei_pfirst(const __m128& a) { return _mm_cvtss_f32(a); }
inline double ei_pfirst(const __m128d& a) { return _mm_cvtsd_f64(a); }
inline int ei_pfirst(const __m128i& a) { return _mm_cvtsi128_si32(a); }
-#endif
+#endif // EIGEN_VECTORIZE_SSE
#endif // EIGEN_PACKET_MATH_H