TR-mbed 1.0
Loading...
Searching...
No Matches
bench_static.hh
Go to the documentation of this file.
1//=====================================================
2// File : bench_static.hh
3// Author : L. Plagne <laurent.plagne@edf.fr)>
4// Copyright (C) EDF R&D, lun sep 30 14:23:16 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#ifndef BENCH_STATIC_HH
21#define BENCH_STATIC_HH
22
23#include "btl.hh"
24#include "bench_parameter.hh"
25#include <iostream>
26#include "utilities.h"
27#include "xy_file.hh"
30// #include "timers/mixed_perf_analyzer.hh"
31// #include "timers/x86_perf_analyzer.hh"
32
33using namespace std;
34
35
36template <template<class> class Perf_Analyzer, template<class> class Action, template<class,int> class Interface>
38{
39 if (BtlConfig::skipAction(Action<Interface<REAL_TYPE,10> >::name()))
40 return;
41
42 string filename = "bench_" + Action<Interface<REAL_TYPE,10> >::name() + ".dat";
43
44 INFOS("starting " << filename);
45
46 const int max_size = TINY_MV_MAX_SIZE;
47
48 std::vector<double> tab_mflops;
49 std::vector<double> tab_sizes;
50
52
53 dump_xy_file(tab_sizes,tab_mflops,filename);
54}
55
56// default Perf Analyzer
57template <template<class> class Action, template<class,int> class Interface>
59{
60 bench_static<Portable_Perf_Analyzer,Action,Interface>();
61 //bench_static<Mixed_Perf_Analyzer,Action,Interface>();
62 //bench_static<X86_Perf_Analyzer,Action,Interface>();
63}
64
65#endif
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#define TINY_MV_MAX_SIZE
Definition bench_parameter.hh:46
BTL_DONT_INLINE void bench_static(void)
Definition bench_static.hh:37
#define BTL_DONT_INLINE
Definition btl.hh:38
static BTL_DONT_INLINE bool skipAction(const std::string &_name)
Definition btl.hh:216
Action
Definition Constants.h:504
Definition BFloat16.h:88
static void go(vector< double > &tab_sizes, vector< double > &tab_mflops)
Definition static_size_generator.hh:30
#define INFOS(chain)
Definition utilities.h:22
void dump_xy_file(const Vector_A &X, const Vector_B &Y, const std::string &filename)
Definition xy_file.hh:64