欢迎来到代码驿站!

C代码

当前位置:首页 > 软件编程 > C代码

计时器的time_t和clock_t 的两种实现方法(推荐)

时间:2021-06-24 08:18:30|栏目:C代码|点击:

想给自己初步完成的相空间搜索算法计算一下运行时间,于是尝试了如下使用 time_t 类型的方式

#include <stdlib.h>
#include <iostream>
#include <time.h>
#include "StateFunctions.h"

using namespace std;

int main(int argc, char** argv)
{
  time_t start, finish;

  time(&start);

  StateFunctions testobj(22, 22);
  testobj.TEST();
  testobj.TEST();
  testobj.FillRandomDets(200);
  testobj.evolute(1000, 0.9);

  cout << "--------------------------------------------" << endl;
  time(&finish);
  double duration = difftime(finish, start);
  cout << "--> time: " << duration << " s" << endl;
  cout << "--------------------------------------------" << endl;

  return 0;
}

这种实现方式可以正确计算出算法的核心部分耗费了234秒的 walltime。在此之前尝试的使用 clock_t 类型的实现方式是

#include <iostream>
#include <time.h>
#include "StateFunctions.h"

using namespace std;

int main(int argc, char** argv)
{
	clock_t start, finish;
	start = clock();

	StateFunctions testobj(22, 22);
	testobj.TEST();
	testobj.TEST();
	testobj.FillRandomDets(200);
	testobj.evolute(1000, 0.9);

	cout << "--------------------------------------------" << endl;
	finish = clock();
	double duration = (double)(finish - start) / CLOCKS_PER_SEC;
	cout << "--> time: " << duration << " s" << endl;
	cout << "--------------------------------------------" << endl;

	return 0;
}

这段代码得到的运行时间只有11秒,明显不对。造成这种结果的原因暂时还不清楚,或许是因为算法执行过程中在频繁调用其他外部程序来获得一些计算结果。

上一篇:C++直接cout指针名的含义?

栏    目:C代码

下一篇:c++ 如何在libuv中实现tcp服务器

本文标题:计时器的time_t和clock_t 的两种实现方法(推荐)

本文地址:http://www.codeinn.net/misctech/147186.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有