我在 CUDA 中有一个 __global__ 函数。它可以自称吗?
这是我的例子:
__global__ void
force_create_empty_nodes (struct NODE *Nodes, int topnode, int bits, int no, int x, int y,
int z, struct topnode_data *TopNodes)
{
/// * Some code *///
force_create_empty_nodes <<<1, 8>>>(Nodes, topnode+1, bits+1, no+1,
x+1, y+1, z+1, TopNodes);
}
我收到的错误是:
error: kernel launch from __device__ or __global__ functions requires separate compilation mode
这是我的制作命令:
nvcc -c -arch compute_35 cudaForceNodes.cu -o obj/cudaForceNodes.o