tags:

views:

22

answers:

0

hai

I gone through the CUDA programming guide where i can't understand the below thread allocation method.

dim3 dimGrid(2, 2, 1); dim3 dimBlock(4, 2, 2); KernelFunction<<>>(. . .);

Can some explain how the thread is allocated for the above condition?.