Grid View

Thread total =

Input the dimensions of the blocks

Input the dimensions of the threads

                
                // CUDA Kernel dimensions
                const dim3 gridDim = {blocksInGridx, blocksInGridy, blocksInGridz};
                const dim3 blockDim = {threadsInBlockx, threadsInBlocky, threadsInBlockz};
                <<<gridDim, blockDim>>>kernelFunction();