00001 //===================================================== 00002 // Copyright (C) 2008 Gael Guennebaud <gael.guennebaud@inria.fr> 00003 //===================================================== 00004 // 00005 // This program is free software; you can redistribute it and/or 00006 // modify it under the terms of the GNU General Public License 00007 // as published by the Free Software Foundation; either version 2 00008 // of the License, or (at your option) any later version. 00009 // 00010 // This program is distributed in the hope that it will be useful, 00011 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00013 // GNU General Public License for more details. 00014 // You should have received a copy of the GNU General Public License 00015 // along with this program; if not, write to the Free Software 00016 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00017 // 00018 #include "utilities.h" 00019 #include "eigen3_interface.hh" 00020 #include "static/bench_static.hh" 00021 #include "action_matrix_vector_product.hh" 00022 #include "action_matrix_matrix_product.hh" 00023 #include "action_axpy.hh" 00024 #include "action_lu_solve.hh" 00025 #include "action_ata_product.hh" 00026 #include "action_aat_product.hh" 00027 #include "action_atv_product.hh" 00028 #include "action_cholesky.hh" 00029 #include "action_trisolve.hh" 00030 00031 BTL_MAIN; 00032 00033 int main() 00034 { 00035 00036 bench_static<Action_axpy,eigen2_interface>(); 00037 bench_static<Action_matrix_matrix_product,eigen2_interface>(); 00038 bench_static<Action_matrix_vector_product,eigen2_interface>(); 00039 bench_static<Action_atv_product,eigen2_interface>(); 00040 bench_static<Action_cholesky,eigen2_interface>(); 00041 bench_static<Action_trisolve,eigen2_interface>(); 00042 00043 return 0; 00044 } 00045 00046