Posts by Yowlisses • 1 point
1 post
-
-1
votes2
answers256
viewsA: Recursion in CUDA and Opencl
CUDA in its most modern versions accepts recursion in a very limited way. Basically, a kernel marked as __global__ can call another kernel __global__, which will run in another block, and wait until…