From d02eccf5840b356e741ea0e3166db2c7623b88c4 Mon Sep 17 00:00:00 2001 From: Benoit Jacob Date: Mon, 14 Dec 2009 22:47:14 -0500 Subject: 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. --- Eigen/LU | 1 + 1 file changed, 1 insertion(+) (limited to 'Eigen/LU') 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 -- cgit v1.2.3