在Cuda中找不到HANDLE_ERROR错误

时间:2012-11-06 06:00:11

标签: cuda

__global__ void add( int a, int b, int *c ) { 
    *c = a + b;
}
int main( void ) {
int c;
int *dev_c;
HANDLE_ERROR( cudaMalloc( (void**)&dev_c, sizeof(int) ) );
add<<<1,1>>>( 2, 7, dev_c );
HANDLE_ERROR( cudaMemcpy( &c, dev_c, sizeof(int), cudaMemcpyDeviceToHost ) ); 
printf( "2 + 7 = %d\n", c );
cudaFree( dev_c );
}

这是代码。 未发现HANDLE_ERROR错误。我不知道如何解决它。试图抓住一些头文件,但无法搞清楚......

任何帮助请!!!

2 个答案:

答案 0 :(得分:38)

如果我不得不猜测,我会说你正在使用CUDA By Example这本书来定义HANDLE_ERROR宏,如下所示:

static void HandleError( cudaError_t err,
                         const char *file,
                         int line ) {
    if (err != cudaSuccess) {
        printf( "%s in %s at line %d\n", cudaGetErrorString( err ),
                file, line );
        exit( EXIT_FAILURE );
    }
}
#define HANDLE_ERROR( err ) (HandleError( err, __FILE__, __LINE__ ))

确保此代码显示在源代码中的某个位置,或显示在#include标题中的某个位置。

答案 1 :(得分:0)

您可以下载图书here的源代码。

源代码还包含头文件(在公共文件夹中),其中定义了缺失的宏,并且该书在源代码中引用为(例如)

622003

如果链接不可用,请在Nvidia开发者网站或CUDA网站上搜索图书标题,您将找到指向该图书页面的直接链接,其中可以找到源代码。