Home | History | Annotate | Download | only in blitz
      1 //=====================================================
      2 // File   :  main.cpp
      3 // Author :  L. Plagne <laurent.plagne (at) edf.fr)>
      4 // Copyright (C) EDF R&D,  lun sep 30 14:23:30 CEST 2002
      5 //=====================================================
      6 //
      7 // This program is free software; you can redistribute it and/or
      8 // modify it under the terms of the GNU General Public License
      9 // as published by the Free Software Foundation; either version 2
     10 // of the License, or (at your option) any later version.
     11 //
     12 // This program is distributed in the hope that it will be useful,
     13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
     14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15 // GNU General Public License for more details.
     16 // You should have received a copy of the GNU General Public License
     17 // along with this program; if not, write to the Free Software
     18 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
     19 //
     20 #include "utilities.h"
     21 #include "tiny_blitz_interface.hh"
     22 #include "static/bench_static.hh"
     23 #include "action_matrix_vector_product.hh"
     24 #include "action_matrix_matrix_product.hh"
     25 #include "action_axpy.hh"
     26 
     27 BTL_MAIN;
     28 
     29 int main()
     30 {
     31   bench_static<Action_axpy,tiny_blitz_interface>();
     32   bench_static<Action_matrix_matrix_product,tiny_blitz_interface>();
     33   bench_static<Action_matrix_vector_product,tiny_blitz_interface>();
     34 
     35   return 0;
     36 }
     37 
     38 
     39