aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/Core
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2008-05-05 17:19:47 +0000
committerGravatar Gael Guennebaud <g.gael@free.fr>2008-05-05 17:19:47 +0000
commit64c49de7baf6b843739b170d61aebc744d943ba9 (patch)
treef3aa15411d1f0cfba7cc262581c9802952b2d90b /Eigen/Core
parent46fa4c713fa2fdb472e287cad95b5933135e6503 (diff)
* split PacketMath.h to SSE and Altivec specific files
* improved the flexibility of the new product implementation, now all sizes seems to be properly handled.
Diffstat (limited to 'Eigen/Core')
-rw-r--r--Eigen/Core6
1 files changed, 6 insertions, 0 deletions
diff --git a/Eigen/Core b/Eigen/Core
index cfe7a1059..999bb96f2 100644
--- a/Eigen/Core
+++ b/Eigen/Core
@@ -39,6 +39,12 @@ namespace Eigen {
#include "src/Core/NumTraits.h"
#include "src/Core/MathFunctions.h"
#include "src/Core/PacketMath.h"
+#if defined EIGEN_VECTORIZE_SSE
+#include "src/Core/PacketMath_SSE.h"
+#elif defined EIGEN_VECTORIZE_ALTIVEC
+#include "src/Core/PacketMath_Altivec.h"
+#endif
+
#include "src/Core/Functors.h"
#include "src/Core/MatrixBase.h"
#include "src/Core/Coeffs.h"