Cutil.h CUDA 4.0中的CUT_SAFE_CALL

时间:2011-06-08 13:39:43

标签: cuda

我正在使用CUDA 4.0。我正在尝试使用以下功能。

CUT_DEVICE_INIT();
CUT_SAFE_CALL(cutCreateTimer(&hTimer));

我包含cutil.h以使用上述功能。但编译器会报告以下内容..

fatal error C1083: Cannot open include file: 'cutil.h': No such file or directory

我在CUDA目录中搜索但没有文件'cutil.h'。 如何使用上述方法找到CUDA功能所需的时间? (不使用C ++计时器)

1 个答案:

答案 0 :(得分:1)

您可能没有告诉编译器在哪里找到该文件。我无法准确地告诉您,因为您没有提供有关您正在使用的系统的详细信息,例如,在Windows XP上并假设SDK的4.0版本的默认安装时,cutil.h头文件位于:

  

C:\ Documents and Settings \ All Users \ Application Data \ NVIDIA Corporation \ NVIDIA GPU Computing SDK 4.0 \ C \ common \ inc

对于Windows 7,我认为是:

  

C:\ Program Data \ NVIDIA Corporation \ NVIDIA GPU Computing SDK 4.0 \ C \ common \ inc

但不确定。