gpt4 book ai didi

recursion - CUDA支持递归吗?

转载 作者:行者123 更新时间:2023-12-02 21:49:31 26 4
gpt4 key购买 nike

CUDA支持递归吗?

最佳答案

它在支持计算能力 2.0 和 CUDA 3.1 的 NVIDIA 硬件上执行:

New language features added to CUDA C/ C++ include:

Support for functionpointers and recursion make it easierto port many existing algorithms toFermi GPUs

http://developer.nvidia.com/object/cuda_3_1_downloads.html

函数指针: http://developer.download.nvidia.com/compute/cuda/sdk/website/CUDA_Advanced_Topics.html#FunctionPointers

递归:我在 NVIDIA 的网站上找不到代码示例,但在 forum 上找到了有人发布了这个:

__device__ int fact(int f)
{
if (f == 0)
return 1;
else
return f * fact(f - 1);
}

关于recursion - CUDA支持递归吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3644809/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com