Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #include "utilities.h"
00021 #include "bench.hh"
00022 #include "C_interface.hh"
00023 #include "action_matrix_vector_product.hh"
00024 #include "action_atv_product.hh"
00025 #include "action_matrix_matrix_product.hh"
00026 #include "action_axpy.hh"
00027 #include "action_ata_product.hh"
00028 #include "action_aat_product.hh"
00029
00030 #include "timers/mixed_perf_analyzer.hh"
00031
00032 BTL_MAIN;
00033
00034 int main()
00035 {
00036
00037 bench<Action_matrix_vector_product<C_interface<REAL_TYPE> > >(MIN_MV,MAX_MV,NB_POINT);
00038 bench<Action_atv_product<C_interface<REAL_TYPE> > >(MIN_MV,MAX_MV,NB_POINT);
00039 bench<Action_matrix_matrix_product<C_interface<REAL_TYPE> > >(MIN_MM,MAX_MM,NB_POINT);
00040 bench<Action_aat_product<C_interface<REAL_TYPE> > >(MIN_MM,MAX_MM,NB_POINT);
00041 bench<Action_ata_product<C_interface<REAL_TYPE> > >(MIN_MM,MAX_MM,NB_POINT);
00042 bench<Action_axpy<C_interface<REAL_TYPE> > >(MIN_AXPY,MAX_AXPY,NB_POINT);
00043
00044
00045 return 0;
00046 }
00047
00048