cuda头文件

发布于 2024-12-02 05:50:16 字数 434 浏览 1 评论 0原文

我有一个名为“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

倾城°AllureLove 2024-12-09 05:50:16

我希望您有一个自动编译所有 .cu 文件的规则,这意味着 KernelUtil.cu 被有效编译两次,一次单独编译,一次包含在 中时编译main.cu,因此 add 是重复的。

尝试将 KernelUtil.cu 重命名为 KernelUtil.h(或 .cuh)。

I expect that you have a rule that automatically compiles all .cu files, meaning KernelUtil.cu is effectively compiled twice, once on its own and once when included in main.cu, and therefore add is duplicated.

Try renaming KernelUtil.cu to KernelUtil.h (or .cuh).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文