5

我有几个用于图像处理应用程序的文件。由于在执行某些图像处理算法时图像的行数和列数没有改变,我试图将这些值放在常量内存中。我的应用看起来像:

Imageproc.cuh

...
...
__constant__ int c_rows;
__constant__ int c_cols;

#ifdef __cplusplus
   extern "C"
   {
#endif
   ...
   ...
#ifdef __cplusplus
   }
#endif

Imageproc.cu

...
...

int algorithm(float *a, const int rows, const int cols){
   ...
   ...
   checkCudaError(cudaMemcpyToSymbol(&c_rows, &rows, sizeof(int)));
   checkCudaError(cudaMemcpyToSymbol(&c_cols, &cols, sizeof(int)));

   dim3 block(T, T);
   dim3 grid(cols/T+1, rows/T+1);

   kernel<<<grid, block>>>( ... );
   ...
   ...

}

它编译得很好但是当我尝试运行我得到的程序时invalid device symbol cudaMemcpyToSymbol(&c_rows, &rows, sizeof(int))

我不能把这些变量放在常量内存中还是我错过了什么?

4

1 回答 1

9

如果你的符号是这样声明的:

__constant__ int c_rows;

那么正确的调用cudaMemcpyToSymbol就是

int rows = 5;
cudaMemcpyToSymbol(c_rows, &rows, sizeof(int)));
于 2013-05-11T15:41:45.897 回答