Utils.h
上传用户:chinafayin
上传日期:2022-04-05
资源大小:153k
文件大小:2k
源码类别:

并行计算

开发平台:

Visual C++

  1. /*
  2.     FastGrid (formerly AutoGrid)
  3.     Copyright (C) 2009 The Scripps Research Institute. All rights reserved.
  4.     Copyright (C) 2009 Masaryk University. All rights reserved.
  5.     AutoGrid is a Trade Mark of The Scripps Research Institute.
  6.     This program is free software; you can redistribute it and/or
  7.     modify it under the terms of the GNU General Public License
  8.     as published by the Free Software Foundation; either version 2
  9.     of the License, or (at your option) any later version.
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.     You should have received a copy of the GNU General Public License
  15.     along with this program; if not, write to the Free Software
  16.     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  17. */
  18. #pragma once
  19. #include <cstdio>
  20. #include "GridMap.h"
  21. #include "ProgramParameters.h"
  22. void saveAVSGridmapsFile(const GridMapList &gridmaps, const InputData *input, const ProgramParameters &programParams, LogFile &logFile);
  23. // BOINC
  24. void boincInit();
  25. void boincDone();
  26. FILE *boincOpenFile(const char *path, const char *mode);
  27. // Timer
  28. class Timer
  29. {
  30. public:
  31.     // returns an unused timer, it's released automatically at the end of the program
  32.     static Timer *startNew(const char *name, bool start = true);
  33.     Timer();
  34.     ~Timer();
  35.     void start();
  36.     void stop();
  37.     void reset();
  38.     void log(FILE *file, bool reset = true);
  39.     void stopAndLog(FILE *file, bool reset = true);
  40.     clock_t getReal() const;
  41.     clock_t getUser() const;
  42.     clock_t getSys() const;
  43.     static void logAll(FILE *file);
  44. private:
  45.     struct Private;
  46.     Private *p;
  47. };