码迷,mamicode.com
首页 > Windows程序 > 详细

在Windows及Linux下获取毫秒级运行时间的方法

时间:2016-05-11 23:44:24      阅读:496      评论:0      收藏:0      [点我收藏+]

标签:

在Windows下获取毫秒级运行时间的方法

  1. 头文件:<Windows.h>
  2. 函数原型:
    /*获取时钟频率,保存在结构LARGE_INTEGER中***/
         WINBASEAPI
         BOOL
         WINAPI
         QueryPerformanceFrequency(
         _Out_ LARGE_INTEGER * lpFrequency
         );
         /*获取从某个时间点开始的时钟周期数,保存在结构LARGE_INTEGER中**/
         WINBASEAPI
         BOOL
         WINAPI
         QueryPerformanceFrequency(
         _Out_ LARGE_INTEGER * lpFrequency
         );
  3.  LARGE_INTEGER结构
    typedef union _LARGE_INTEGER {
         struct {
         DWORD LowPart;
         LONG HighPart;
         } DUMMYSTRUCTNAME;
         struct {
         DWORD LowPart;
         LONG HighPart;
         } u;
         #endif //MIDL_PASS
         LONGLONG QuadPart;
         } LARGE_INTEGER;

    LARGE_INTEGER为一个union,我们将使用成员QuadPart获取时钟周期数。

  4. 方法:

    1) 调用QueryPerformanceFrequency()获取时钟频率

    2) 在待测部分的首尾分别调用QueryPerformanceCounter()获取两个时间点的时钟周期数

    3) 将两个节点的时钟周期数差值除以时钟频率即可得到测试部分的运行时间

    参考代码:

技术分享
#include <iostream>
#include <ctime>
#include <cstdlib>
#include <Windows.h>
#define SIZE 100
using namespace std;
int a[SIZE];
int b[SIZE];
int c[SIZE];
int main(){
//srand(time(0));
for (int i = 0; i < SIZE; ++i){
a[i] = rand();
b[i] = rand();
}
LARGE_INTEGER begain, end, frequency;
QueryPerformanceFrequency(&frequency);
QueryPerformanceCounter(&begain);
#pragma omp parallel for
for (int i = 0; i < SIZE; ++i){
c[i] = a[i] * b[i];
}
QueryPerformanceCounter(&end);
cout << "Cost time : " << (double)(end.QuadPart - begain.QuadPart) * 1000 / frequency.QuadPart << "ms" << endl;
cout << begain.QuadPart << endl;
}
View Code

在Linux下获取毫秒级运行时间的方法

  1. 头文件<sys/time.h> 
  2. 函数原型:
    int gettimeofday(struct timeval *tv, struct timezone *tz);
         struct timeval {
         time_t tv_sec; /* seconds */
         suseconds_t tv_usec; /* microseconds */
         };

    参考代码:

技术分享
#include <stdio.h>
#include <stdlib.h>
#include <sys/time.h>
int main()
{
    struct timeval _tstart, _tend;
    double t1, t2;
        
    gettimeofday(&_tstart, NULL);

    // ToDo..

    gettimeofday(&_tend, NULL);

    t1 = (double)_tstart.tv_sec * 1000 + (double)_tstart.tv_usec / 1000;
    t2 = (double)_tend.tv_sec * 1000 + (double)_tend.tv_usec / 1000;
    printf("Cost time : %fms\n", t2 - t1);
    return 0;
}
View Code

 

在Windows及Linux下获取毫秒级运行时间的方法

标签:

原文地址:http://www.cnblogs.com/chensu/p/5483594.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!