CUDA 5.0,编译错误

问题描述 投票:0回答:1

下面的代码给出了一个错误,我看不出任何原因。有人可以让我知道我做错了什么吗?

__global__ void thekernel(float *device_a, int CELLS, int LVLS) {

   int t_id = threadIdx.x + blockDim.x * blockIdx.x;

   int INR = CELLS - 1;
   int col = INR - (threadIdx.x % CELLS);
   int row = t_id / CELLS;
   float power = (row / pow((float)LVLS, col)) % LVLS;
   device_a[t_id] = power;
 }

编译错误指出:

cudaMain.cu(11): error: expression must have integral or enum type

这是表达式:

float power = (row / pow((float)LVLS, col)) % LVLS;

如果我从这个表达式中删除 "% LVLS" 代码编译时不会出现任何错误。 编译字符串是:

nvcc -G -g -O0 -gencode arch=compute_20,code=sm_20 -odir "" -M -o "cudaMain.d" "../cudaMain.cu"
nvcc --compile -G -O0 -g -gencode arch=compute_20,code=compute_20 -gencode arch=compute_20,code=sm_20  -x cu -o  "cudaMain.o" "../cudaMain.cu"

硬件

我的GPU卡是:Quadro 6000,计算能力2.0

compiler-errors cuda
1个回答
1
投票

将幂函数转换为 int 有效。

int denom = (int)pow((float)LVLS, (float)col);
int power = (row / denom) % LVLS;

执行时没有任何编译错误。有趣的是,在 cuda 中,模运算符仅限于整数。 (我对此不太确定)

© www.soinside.com 2019 - 2024. All rights reserved.