⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bench.h

📁 A C++ class library for scientific computing
💻 H
字号:
/*************************************************************************** * blitz/bench.h      Benchmark classes * * Copyright (C) 1997-2001 Todd Veldhuizen <tveldhui@oonumerics.org> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the * GNU General Public License for more details. * * Suggestions:          blitz-dev@oonumerics.org * Bugs:                 blitz-bugs@oonumerics.org * * For more information, please see the Blitz++ Home Page: *    http://oonumerics.org/blitz/ * ***************************************************************************/#ifndef BZ_BENCH_H#define BZ_BENCH_H#ifndef BZ_MATRIX_H #include <blitz/matrix.h>#endif#ifndef BZ_TIMER_H #include <blitz/timer.h>#endif#include <math.h>BZ_NAMESPACE(blitz)// Forward declarationtemplate<typename P_parameter = unsigned>class BenchmarkImplementation;// Declaration of class Benchmark<T>// The template parameter T is the parameter type which is varied in// the benchmark.  Typically T will be an unsigned, and will represent// the length of a vector, size of an array, etc.template<typename P_parameter = unsigned>class Benchmark {public:    typedef P_parameter T_parameter;    Benchmark(unsigned numImplementations);    ~Benchmark();    void addImplementation(BenchmarkImplementation<T_parameter>*         implementation);    void run(ostream& log = cout);    double getMflops(unsigned implementation, unsigned setting) const;    double getRate(unsigned implementation, unsigned setting) const;    void saveMatlabGraph(const char* filename) const;public:    // Virtual functions    virtual const char* description() const    { return ""; }    virtual const char* parameterDescription() const    { return "Vector length"; }    virtual unsigned numParameterSettings() const    { return 19; }    virtual T_parameter getParameterSetting(unsigned i) const    { return ::pow(10.0, (i+1)/4.0); }    virtual long getIterationSetting(unsigned i) const    { return 1000000L / getParameterSetting(i); }private:    Benchmark(const Benchmark<P_parameter>&) { }    void operator=(const Benchmark<P_parameter>&) { }    enum { uninitialized, initialized, running, done } state_;    unsigned numImplementations_;    unsigned numStoredImplementations_;    BenchmarkImplementation<T_parameter>** implementations_;    Matrix<double,RowMajor> rates_;       // Iterations per second array    Matrix<double,RowMajor> Mflops_;};template<typename P_parameter>class BenchmarkImplementation {public:    typedef P_parameter T_parameter;    virtual void initialize(P_parameter parameter) { }    virtual void done() { }    virtual const char* implementationName() const    { return ""; }    virtual void run(long iterations) = 0;    virtual void runOverhead(long iterations)     {         for (long i=0; i < iterations; ++i)        {        }    };    virtual void tickle() { }    virtual long flopsPerIteration() const    { return 0; }};BZ_NAMESPACE_END#include <blitz/bench.cc>  #endif // BZ_BENCH_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -