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

📄 benchext.h

📁 A C++ class library for scientific computing
💻 H
字号:
/*************************************************************************** * blitz/benchext.h      BenchmarkExt classes (Benchmarks with external *                       control) * * 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_BENCHEXT_H#define BZ_BENCHEXT_H#ifndef BZ_MATRIX_H #include <blitz/matrix.h>#endif#ifndef BZ_TIMER_H #include <blitz/timer.h>#endif#include <math.h>// NEEDS_WORK: replace use of const char* with <string>, once standard// library is widely supported.BZ_NAMESPACE(blitz)// Declaration of class BenchmarkExt<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 BenchmarkExt {public:    typedef P_parameter T_parameter;    BenchmarkExt(const char* description, int numImplementations);    ~BenchmarkExt();    void setNumParameters(int numParameters);    void setParameterVector(Vector<T_parameter> parms);    void setParameterDescription(const char* string);    void setIterations(Vector<long> iters);    void setFlopsPerIteration(Vector<double> flopsPerIteration);    void setRateDescription(const char* string);    void beginBenchmarking();    void beginImplementation(const char* description);    bool doneImplementationBenchmark() const;    T_parameter getParameter() const;    long        getIterations() const;    inline void start();    inline void stop();    void startOverhead();    void stopOverhead();    void endImplementation();    void endBenchmarking();     double getMflops(unsigned implementation, unsigned parameterNum) const;    void saveMatlabGraph(const char* filename, const char* graphType="semilogx") const;protected:    BenchmarkExt(const BenchmarkExt<P_parameter>&) { }    void operator=(const BenchmarkExt<P_parameter>&) { }    enum { initializing, benchmarking, benchmarkingImplementation,        running, runningOverhead, done } state_;    unsigned numImplementations_;    unsigned implementationNumber_;    const char* description_;    Vector<const char*> implementationDescriptions_;    Matrix<double,RowMajor> times_;       // Elapsed time    Vector<T_parameter> parameters_;    Vector<long> iterations_;    Vector<double> flopsPerIteration_;    Timer timer_;    Timer overheadTimer_;    const char* parameterDescription_;    const char* rateDescription_;    unsigned numParameters_;    unsigned parameterNumber_;};BZ_NAMESPACE_END#include <blitz/benchext.cc>  #endif // BZ_BENCHEXT_H

⌨️ 快捷键说明

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