Hi everyone
I am reading NVIDIA CUDA programming guide, and my question is when i write this :
.
.
.
dim3 dimBlock(8);
.
.
.
I am creating 8 threads? ie. an matrix de 1*8?
Other question i can access to block ID into of one grid with same example of the NVIDIA CUDA programming guide, by example if grid dimensions are Dx and Dy, if i want access to block (x,y) ;in the case two dimensions; a formule is (x+yDx)?
thanks