resurrected tvmet, added mt4, intel's MKL and handcoded vectorized backends

in the benchmark suite
This commit is contained in:
Gael Guennebaud
2008-07-10 18:28:50 +00:00
parent 2b53fd4d53
commit 6f71ef8277
37 changed files with 599 additions and 671 deletions

View File

@@ -22,6 +22,7 @@
#include "bench.hh"
#include "action_matrix_vector_product.hh"
#include "action_matrix_matrix_product.hh"
#include "action_atv_product.hh"
#include "action_axpy.hh"
#include "action_lu_solve.hh"
#include "action_ata_product.hh"
@@ -36,6 +37,8 @@ int main()
bench<Action_matrix_vector_product<C_BLAS_interface<REAL_TYPE> > >(MIN_MV,MAX_MV,NB_POINT);
bench<Action_atv_product<C_BLAS_interface<REAL_TYPE> > >(MIN_MV,MAX_MV,NB_POINT);
bench<Action_matrix_matrix_product<C_BLAS_interface<REAL_TYPE> > >(MIN_MM,MAX_MM,NB_POINT);
bench<Action_ata_product<C_BLAS_interface<REAL_TYPE> > >(MIN_MM,MAX_MM,NB_POINT);