如何衡量GPU与CPU的性能?哪个时间测量功能?

时间:2013-04-27 23:58:26

标签: time cuda gpu-programming measurement

需要使用哪些库或函数来客观地比较CPU和GPU性能?为了准确评估,应该警告警告

我使用具有计算能力2.1的设备的Ubuntu平台并使用CUDA 5工具包。

1 个答案:

答案 0 :(得分:5)

我正在使用以下

CPU - 在tic和toc之间返回微秒,分辨率为2微秒

#include <sys/time.h>
#include <time.h>

struct timespec  init;
struct timespec  after;

void tic() { clock_gettime(CLOCK_MONOTONIC,&init); }

double toc() {
    clock_gettime(CLOCK_MONOTONIC,&after);
    double us = (after.tv_sec-init.tv_sec)*1000000.0f;
    return us+(after.tv_nsec- init.tv_nsec)/1000.0f;
}

<强> GPU

float time;
cudaEvent_t start, stop;
cudaEventCreate(&start);
cudaEventCreate(&stop);
cudaEventRecord(start, 0);

// Instructions

cudaEventRecord(stop, 0);
cudaEventSynchronize(stop);
cudaEventElapsedTime(&time, start, stop);
cout << setprecision (10) << "GPU Time [ms] " << time << endl;

修改

如需更完整的答案,请参阅Timing CUDA operations