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

📄 regtime.h

📁 大型并行量子化学软件;支持密度泛函(DFT)。可以进行各种量子化学计算。支持CHARMM并行计算。非常具有应用价值。
💻 H
字号:
//// regtime.h//// Copyright (C) 1996 Limit Point Systems, Inc.//// Author: Curtis Janssen <cljanss@limitpt.com>// Maintainer: LPS//// This file is part of the SC Toolkit.//// The SC Toolkit is free software; you can redistribute it and/or modify// it under the terms of the GNU Library General Public License as published by// the Free Software Foundation; either version 2, or (at your option)// any later version.//// The SC Toolkit 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 Library General Public License for more details.//// You should have received a copy of the GNU Library General Public License// along with the SC Toolkit; see the file COPYING.LIB.  If not, write to// the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.//// The U.S. Government is granted a limited license as per AL 91-7.//#ifdef __GNUC__#pragma interface#endif#ifndef _util_misc_regtime_h#define _util_misc_regtime_h#include <iostream>#include <string>#include <util/class/class.h>namespace sc {class TimedRegion;/** The RegionTimer class is used to record the time spent in a section ofcode.  During the run of a code, enter and exit members are called to beginand end timed sections.  The print member is used to display the obtainedtimes.  Multiple enter calls for a region with the same name aggregate thetimings. Nested regions are supported. */class RegionTimer: public DescribedClass {  protected:    int wall_time_;    int cpu_time_;    int flops_;    TimedRegion *top_;    TimedRegion *current_;    TimedRegion *default_;  public:    RegionTimer(const char *topname = "total",                int cpu_time = 0, int wall_time = 1);    RegionTimer(const Ref<KeyVal> &);    ~RegionTimer();    void enter(const char * = 0);    void change(const char *newname, const char * oldname = 0);    void exit(const char * = 0);    void set_default(const char *);    void unset_default();    void enter_default();    void exit_default();    virtual void print(std::ostream& = ExEnv::out0()) const;    void update_top() const;    int nregion() const;    void get_region_names(const char *names[]) const;    void get_wall_times(double *) const;    void get_cpu_times(double *) const;    void get_flops(double *) const;    void get_depth(int *) const;    double get_wall_time() const;    double get_cpu_time() const;    double get_flops() const;    void add_wall_time(const char *, double);    void add_cpu_time(const char *, double);    void add_flops(const char *, double);    static RegionTimer *default_regiontimer();    static void set_default_regiontimer(const Ref<RegionTimer> &);};/** The Timer class uses RegionTimer to time intervals in an exception safemanner.  It will automatically call RegionTimer::enter when its constructoris called and RegionTimer::exit when its destructor is called.  The resetmember can also result in RegionTimer's enter and exit routines beingcalled.  The programmer is responsible for making sure that timers areexited in the reverse of the order that they are entered.  */class Timer {    Ref<RegionTimer> timer_;    std::string name_;    bool active_;  public:    /** Start timing a region using the default RegionTimer and activate        the timer.  If a null name pointer is given, then the        timer will not be activated. */    Timer(const char *name);    /** Start timing a region using the given RegionTimer. If a null name        pointer is given, then the timer will not be activated. */    Timer(const Ref<RegionTimer> &, const char *name);    /** Stop timing a region, if active. */    ~Timer();    /** Stop timing the current region, if active.  If a new region name is        passed in, start timing with that name.  If no region name is        given, the Timer will be deactivated.  */    void reset(const char * = 0);};}#endif// Local Variables:// mode: c++// c-file-style: "CLJ"// End:

⌨️ 快捷键说明

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