1

可以说,我有一个(或多个)函数需要很长时间(墙上时间)才能执行,例如:

#include "stdafx.h"
#include <math.h>
#include <windows.h>

void fun()
{
  long sum = 0L;
  for (long long i = 1; i < 10000000; i++){
        sum += log((double)i);
    }
 }

double cputimer()
{
    FILETIME createTime;
    FILETIME exitTime;
    FILETIME kernelTime;
    FILETIME userTime;


    if ( GetProcessTimes( GetCurrentProcess( ),
        &createTime, &exitTime, &kernelTime, &userTime ) != -1 )
    {
        SYSTEMTIME userSystemTime;
        if ( FileTimeToSystemTime( &userTime, &userSystemTime ) != -1 )
            return (double)userSystemTime.wHour * 3600.0 +
            (double)userSystemTime.wMinute * 60.0 +
            (double)userSystemTime.wSecond +
            (double)userSystemTime.wMilliseconds / 1000.0;
    }

}

int _tmain(int argc, _TCHAR* argv[])
{
    double start, stop;

    start = cputimer();
    fun();
    stop = cputimer();


    printf("Time taken: %f [seconds]\n", stop - start);

    return 0;
}

我想测量这个函数的 CPU 负载和这个函数调用使用的 RAM 使用率。那可能吗?我怎样才能做到这一点?我对 Windows 和 Linux 解决方案感兴趣。

4

2 回答 2

2

在 POSIX 上,您可以尝试getrusage以类似于检查挂钟时间的方式使用。不确定窗户。

于 2013-10-19T19:14:12.520 回答
1

Windows的GetProcessTimes 函数可以为您提供 CPU 时间。还要检查进程状态 API

还有独立于平台的SIGAR

在 Linux 上,您可以尝试使用getrusage

于 2013-10-19T19:14:08.080 回答