我刚刚开始编写CUDA代码而我正在尝试将代码管理成一堆不同的文件,但我的一个宏不会因为某些原因而将参数传递给它。
错误是:
addkernel.cu(19): error: identifier "err" is undefined
所以我的主要代码是../cbe4/addkernel.cu
#include <stdio.h>
#include <stdlib.h>
#include "cbe4.h"
#include "../mycommon/general.h"
#define N 100
int main( int argc, char ** argv ){
float h_out[N], h_a[N], h_b[N];
float *d_out, *d_a, *d_b;
for (int i=0; i<N; i++) {
h_a[i] = i + 5;
h_b[i] = i - 10;
}
// The error is on the next line
CUDA_ERROR( cudaMalloc( (void **) &d_out, sizeof(float) * N ) );
CUDA_ERROR( cudaMalloc( (void **) &d_a, sizeof(float) * N ) );
CUDA_ERROR( cudaMalloc( (void **) &d_b, sizeof(float) * N ) );
cudaFree(d_a);
cudaFree(d_b);
return EXIT_SUCCESS;
}
宏在../ mycommon / general.h中定义:
#ifndef __GENERAL_H__
#define __GENERAL_H__
#include <stdio.h>
// error checking
void CudaErrorCheck (cudaError_t err, const char *file, int line);
#define CUDA_ERROR ( err ) (CudaErrorCheck( err, __FILE__, __LINE__ ))
#endif
这是../ mycommon / general.cu中函数CudaErrorCheck的源代码:
#include <stdio.h>
#include <stdlib.h>
#include "general.h"
void CudaErrorCheck (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 );
}
}
../ cbe / cbe4.h是我的头文件,而../cbe/cbe4.cu是内核代码的源文件(如果这可能有帮助):
在cbe4.h中:
__global__
void add( float *, float *, float * );
在cbe4.cu中:
#include "cbe4.h"
__global__ void add( float *d_out, float *d_a, float *d_b ) {
int tid = (blockIdx.x * blockDim.x) + threadIdx.x;
d_out[tid] = d_a[tid] + d_b[tid]; }
这是我的makefile(存储在../cbe4中):
NVCC = nvcc
SRCS = addkernel.cu cbe4.cu
HSCS = ../mycommon/general.cu
addkernel:
$(NVCC) $(SRCS) $(HSCS) -o $@
另外,顺便说一下,我正在使用Cuda by Example的书。有关common / book.h中的代码的一件事,HandleError的函数(我将其重命名为CudaErrorCheck并将其放在另一个源代码中)在头文件中定义(等效地,在我的general.h中的CudaErrorCheck声明中.Inn这是不可取的?或者我听说过。)
答案 0 :(得分:1)
间距在宏定义中很重要。你有:
#define CUDA_ERROR ( err ) (CudaErrorCheck( err, __FILE__, __LINE__ ))
您需要(最小化更改 - 删除一个空格):
#define CUDA_ERROR( err ) (CudaErrorCheck( err, __FILE__, __LINE__ ))
使用类似函数的宏,宏名称和宏定义的参数列表的左括号之间不能有空格。在使用宏时,宏名称和参数列表的左括号之间允许有空格。
我写道:
#define CUDA_ERROR(err) CudaErrorCheck(err, __FILE__, __LINE__)
围绕整个扩展的额外括号并不是必需的,我不太喜欢括号周围的空白区域。不同的人对此有不同的看法,所以我在没有任何意义上要求你使用它(但很明显建议你考虑它)时说明我的偏好。
由于空间的原因,您的代码扩展为:
( err ) (CudaErrorCheck( err, "addkernel.cu", 19 ))( cudaMalloc( (void **) &d_out, sizeof(float) * N ) );
和err
被诊断为未定义的标识符,导致强制转换无效。