我有一个结构定义为
struct sData{
idx * id;
int * stime;
bool * result;
unsigned int N;
};
然后是在中使用它的代码
numeric compute(numeric e, sData swabs){
numeric cache=0.0;
int sid=0;
while(sid<swabs.N){
if(swab.result[sid])
cache += log(e);
else cache += log(1.0-e);
sid += 1;
}
return cache;
}
但在编译时,我得到了错误。
paug_cuda.cu(602):错误:表达式必须具有类类型
这是什么意思。什么班级类型?我在逻辑表达式中使用bool。这里面还有什么。我错过了什么?