aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen/LU
diff options
context:
space:
mode:
authorGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-12-14 22:47:14 -0500
committerGravatar Benoit Jacob <jacob.benoit.1@gmail.com>2009-12-14 22:47:14 -0500
commitd02eccf5840b356e741ea0e3166db2c7623b88c4 (patch)
tree5676a85636aaf78c82f2edd39edbbdddddf53cbf /Eigen/LU
parentd5f3b2dc943a712a92834cebaea8bb9caae2f6e9 (diff)
add SSE path for Matrix4f inverse, taken from Intel except that we do a kosher
division instead of RCPPS-followed-by-Newton-Raphson. The rationale for that is that elsewhere in Eigen we dont allow ourselves this approximation (which throws 2 bits of mantissa), so there's no reason we should allow it here.
Diffstat (limited to 'Eigen/LU')
-rw-r--r--Eigen/LU1
1 files changed, 1 insertions, 0 deletions
diff --git a/Eigen/LU b/Eigen/LU
index c17b9852e..ce11279b6 100644
--- a/Eigen/LU
+++ b/Eigen/LU
@@ -25,6 +25,7 @@ namespace Eigen {
#include "src/LU/PartialPivLU.h"
#include "src/LU/Determinant.h"
#include "src/LU/Inverse.h"
+#include "src/LU/arch/Inverse_SSE.h"
} // namespace Eigen