Reputation: 307
I am trying to implement simple dynamic parallelism programming example like..
__global__ ChildKernel(void* data){
//Operate on data
}
__global__ ParentKernel(void *data){
ChildKernel<<<16, 1>>>(data);
}
// In Host Code
ParentKernel<<<256, 64>>(data);
They said it is supported in CUDA 5.0 and above. I have CUDA 5.0 installed and working on my system but is the device that is GTX 550 Ti support dynamic parallelism ? Thank you.
Upvotes: 0
Views: 155
Reputation: 151799
No, it's not supported.
Dynamic Parallelism requires compute capability 3.5
Your device has compute capability 2.1
You'll find this requirement listed at the bottom of page 1 of the user guide I linked to in your last question on this subject.
Upvotes: 2