如何创建一个可以从主机和设备调用的内核函数?

时间:2013-06-11 21:21:40

标签: cuda

以下试验提出了我的意图,但未能编译:

__host__ __device__ void f(){}

int main()
{
    f<<<1,1>>>();
}

编译器投诉:

a.cu(5): error: a __device__ function call cannot be configured

1 error detected in the compilation of "/tmp/tmpxft_00001537_00000000-6_a.cpp1.ii".

希望我的陈述很清楚,并感谢您的建议。

2 个答案:

答案 0 :(得分:8)

您需要创建一个CUDA内核入口点,例如__global__功能。类似的东西:

#include <stdio.h>

__host__ __device__ void f() {
#ifdef __CUDA_ARCH__
    printf ("Device Thread %d\n", threadIdx.x);
#else
    printf ("Host code!\n");
#endif
}

__global__ void kernel() {
   f();
}

int main() {
   kernel<<<1,1>>>();
   if (cudaDeviceSynchronize() != cudaSuccess) {
       fprintf (stderr, "Cuda call failed\n");
   }
   f();
   return 0;
}

答案 1 :(得分:-1)

你正在看的教程是如此古老,2008年?它可能与您正在使用的CUDA版本不兼容。

您可以使用__global__,这意味着__host__ __device__,这有效:

__global__ void f()
{
    const int tid = threadIdx.x + blockIdx.x * blockDim.x;
}

int main()
{
    f<<<1,1>>>();
}