| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| #ifndef ACTION_LU_SOLVE |
| #define ACTION_LU_SOLVE |
| #include "utilities.h" |
| #include "STL_interface.hh" |
| #include <string> |
| #include "init/init_function.hh" |
| #include "init/init_vector.hh" |
| #include "init/init_matrix.hh" |
|
|
| using namespace std; |
|
|
| template<class Interface> |
| class Action_lu_solve |
| { |
|
|
| public : |
|
|
| static inline std::string name( void ) |
| { |
| return "lu_solve_"+Interface::name(); |
| } |
| |
| static double nb_op_base(int size){ |
| return 2.0*size*size*size/3.0; |
| } |
|
|
|
|
| static double calculate( int nb_calc, int size ) { |
|
|
| |
| |
| typename Interface::stl_matrix A_stl; |
| typename Interface::stl_vector B_stl; |
| typename Interface::stl_vector X_stl; |
|
|
| init_matrix<pseudo_random>(A_stl,size); |
| init_vector<pseudo_random>(B_stl,size); |
| init_vector<null_function>(X_stl,size); |
|
|
| |
|
|
| typename Interface::gene_matrix A; |
| typename Interface::gene_vector B; |
| typename Interface::gene_vector X; |
|
|
| typename Interface::gene_matrix LU; |
|
|
| Interface::matrix_from_stl(A,A_stl); |
| Interface::vector_from_stl(B,B_stl); |
| Interface::vector_from_stl(X,X_stl); |
| Interface::matrix_from_stl(LU,A_stl); |
| |
| |
|
|
| typename Interface::Pivot_Vector pivot; |
| Interface::new_Pivot_Vector(pivot,size); |
| |
| |
|
|
| Portable_Timer chronos; |
|
|
| |
|
|
| chronos.start(); |
| |
| for (int ii=0;ii<nb_calc;ii++){ |
|
|
| |
| Interface::copy_matrix(A,LU,size); |
| Interface::LU_factor(LU,pivot,size); |
| |
| |
|
|
| Interface::LU_solve(LU,pivot,B,X,size); |
|
|
| } |
|
|
| |
|
|
| chronos.stop(); |
|
|
| double time=chronos.user_time(); |
| |
| |
|
|
| typename Interface::stl_vector B_new_stl(size); |
| Interface::vector_to_stl(X,X_stl); |
|
|
| STL_interface<typename Interface::real_type>::matrix_vector_product(A_stl,X_stl,B_new_stl,size); |
| |
| typename Interface::real_type error= |
| STL_interface<typename Interface::real_type>::norm_diff(B_stl,B_new_stl); |
| |
| if (error>1.e-5){ |
| INFOS("WRONG CALCULATION...residual=" << error); |
| STL_interface<typename Interface::real_type>::display_vector(B_stl); |
| STL_interface<typename Interface::real_type>::display_vector(B_new_stl); |
| exit(0); |
| } |
| |
| |
| |
| Interface::free_matrix(A,size); |
| Interface::free_vector(B); |
| Interface::free_vector(X); |
| Interface::free_Pivot_Vector(pivot); |
|
|
| return time; |
| } |
|
|
| }; |
| |
|
|
| #endif |
|
|
|
|
|
|
|
|