Dimensions in CUDA

External Image Hello! I have one question: what are the max and min dimensions in CUDA for grids and blocks?. I have read the CUDA Technichal Trainnig and I have found that the block size has to be 32 at least, but it doesn’t say anything about max value or grids values.

I’m working with a GForce 8800 GTX that has 16 multiproccesors.

Thank you very much! :D

You can find the numbers in the appendix of the Programming Guide. It’s (512, 512, 64) and (65535, 65535, 1).

External Media Thank you very much!! External Media