cuda头文件
我有一个名为“KernelUtil.cu”的文件,如下所示
__device__ int add(int a, int b)
{
return a+b;
}
我的主程序是“main.cu”。我需要从这里调用“add”函数。我该怎么办?以下不起作用。
#include "KernelUtil.cu"
__global__ void test()
{
int c = add(10,10);
}
int main()
{
test<<<1,1>>>();
}
给出错误 add is already Defined in main.cu
I have a file named "KernelUtil.cu" as follows
__device__ int add(int a, int b)
{
return a+b;
}
I have my main program which is "main.cu". I need to call the "add" function from here. How can I do it?? The following doesnt work.
#include "KernelUtil.cu"
__global__ void test()
{
int c = add(10,10);
}
int main()
{
test<<<1,1>>>();
}
giving an error add is already defined in main.cu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我希望您有一个自动编译所有
.cu
文件的规则,这意味着KernelUtil.cu
被有效编译两次,一次单独编译,一次包含在中时编译main.cu
,因此add
是重复的。尝试将
KernelUtil.cu
重命名为KernelUtil.h
(或.cuh
)。I expect that you have a rule that automatically compiles all
.cu
files, meaningKernelUtil.cu
is effectively compiled twice, once on its own and once when included inmain.cu
, and thereforeadd
is duplicated.Try renaming
KernelUtil.cu
toKernelUtil.h
(or.cuh
).