Linux系统中C语言计时器的使用

转自:http://www.wd51.com/os/linux/2011/0518/572.html

在Linux中用C语言计时可以用很多方法。




第一种: 使用秒级别的技术

  #include

#include

using namespace std;

int main()

{

clock_t start = clock();

//do some process here

clock_t end = (clock() - start)/CLOCKS_PER_SEC;

cout<<"time comsumption is "<
}

第二种:使用毫秒级别的计时

  1 如果使用linux的系统库,则可以使用如下方法:

#include

int main()

{

timeval starttime,endtime;

 gettimeofday(&starttime,0);

  //do some process here

 gettimeofday(&endtime,0);

 double timeuse = 1000000*(endtime.tv_sec - starttime.tv_sec) + endtime.tv_usec - starttime.tv_usec;

timeuse /=1000;//除以1000则进行毫秒计时,如果除以1000000则进行秒级别计时,如果除以1则进行微妙级别计时

}



  timeval的结构如下:

strut timeval

 {

  long tv_sec; /* 秒数*/

  long tv_usec; /* 微秒数*/

  };

  上述方法可以进行微妙级别的计时,当然也可以进行毫秒和秒的计时。

 2 如果可以使用CUDA的话,则可以使用CUDA的sdk里面的cutil库里面的函数。

  #include

  int main()

  {

  unsigned int timer = 0;

  cutCreatTimer(&timer);//创建计时器

  cutStartTimer(&timer);//开始计时

  // do some process here

  cutStopTimer(&timer);//停止计时

  cout<<"time is "<
  }

你可能感兴趣的:(C)