需要使用哪些库或函数来客观比较 CPU 和 GPU 性能?为了准确评估,应该警告什么?
我使用具有计算能力2.1
并使用 CUDA 5 工具包的设备的 Ubuntu 平台。
需要使用哪些库或函数来客观比较 CPU 和 GPU 性能?为了准确评估,应该警告什么?
我使用具有计算能力2.1
并使用 CUDA 5 工具包的设备的 Ubuntu 平台。
我正在使用以下
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;
}
图形处理器
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。