From da3f3586e06543a2f573a1182415072b876ce481 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Tue, 22 Mar 2011 15:39:23 +0100 Subject: BTl: GMM++ LU is not a full pivoting LU --- bench/btl/libs/gmm/gmm_interface.hh | 2 +- bench/btl/libs/gmm/main.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'bench/btl') diff --git a/bench/btl/libs/gmm/gmm_interface.hh b/bench/btl/libs/gmm/gmm_interface.hh index 3a7ec6439..3ea303c1b 100644 --- a/bench/btl/libs/gmm/gmm_interface.hh +++ b/bench/btl/libs/gmm/gmm_interface.hh @@ -123,7 +123,7 @@ public : gmm::lower_tri_solve(L, X, false); } - static inline void lu_decomp(const gene_matrix & X, gene_matrix & R, int N){ + static inline void partial_lu_decomp(const gene_matrix & X, gene_matrix & R, int N){ gmm::copy(X,R); std::vector ipvt(N); gmm::lu_factor(R, ipvt); diff --git a/bench/btl/libs/gmm/main.cpp b/bench/btl/libs/gmm/main.cpp index b1f51edb6..7ab22fda3 100644 --- a/bench/btl/libs/gmm/main.cpp +++ b/bench/btl/libs/gmm/main.cpp @@ -20,7 +20,7 @@ #include "bench.hh" #include "basic_actions.hh" #include "action_hessenberg.hh" -#include "action_lu_decomp.hh" +#include "action_partial_lu.hh" BTL_MAIN; @@ -40,7 +40,7 @@ int main() bench > >(MIN_MM,MAX_MM,NB_POINT); //bench > >(MIN_LU,MAX_LU,NB_POINT); - bench > >(MIN_MM,MAX_MM,NB_POINT); + bench > >(MIN_MM,MAX_MM,NB_POINT); bench > >(MIN_MM,MAX_MM,NB_POINT); bench > >(MIN_MM,MAX_MM,NB_POINT); -- cgit v1.2.3