various update of of BTL

This commit is contained in:
Gael Guennebaud
2009-03-04 07:21:17 +00:00
parent 3288e9e168
commit 45136ac3b6
19 changed files with 294 additions and 60 deletions

View File

@@ -19,7 +19,6 @@
#include "eigen2_interface.hh"
#include "bench.hh"
#include "basic_actions.hh"
#include "action_symv.hh"
BTL_MAIN;
@@ -28,6 +27,7 @@ int main()
bench<Action_matrix_vector_product<eigen2_interface<REAL_TYPE> > >(MIN_MV,MAX_MV,NB_POINT);
bench<Action_atv_product<eigen2_interface<REAL_TYPE> > >(MIN_MV,MAX_MV,NB_POINT);
bench<Action_symv<eigen2_interface<REAL_TYPE> > >(MIN_MV,MAX_MV,NB_POINT);
bench<Action_syr2<eigen2_interface<REAL_TYPE> > >(MIN_MV,MAX_MV,NB_POINT);
return 0;
}