dim3 dimBlock(THREADS_PER_BLOCK, THREADS_PER_BLOCK); dim3 dimGrid(B.width/dimBlock.x, A.height/dimBlock.y); MatrixMultKernel<<<dimGrid, dimBlock>>>(d_A, d_B, d_C);
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)