X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/book_gpu.git/blobdiff_plain/f045ded06189b82188fcba9dd6ca383823e34aaa..dd9c1efaf5eab342643f363e8bd4ab8012ba9596:/BookGPU/Chapters/chapter4/code/convoGeneSh1.cu?ds=inline diff --git a/BookGPU/Chapters/chapter4/code/convoGeneSh1.cu b/BookGPU/Chapters/chapter4/code/convoGeneSh1.cu index dcb3379..95eed34 100644 --- a/BookGPU/Chapters/chapter4/code/convoGeneSh1.cu +++ b/BookGPU/Chapters/chapter4/code/convoGeneSh1.cu @@ -11,7 +11,7 @@ __global__ void kernel_convoNonSepSh_8p(unsigned char *output, int j_dim, int r) int i = __umul24( blockIdx.y, blockDim.y) + threadIdx.y ; int j0= __umul24(blockIdx.x,blockDim.x)<<3 ; // block's base point int idx = __umul24(i,j_dim) + j ; // absolute index - int idrow = threadIdx.y*(bdimX+k-1) ; // line's offset in sh mem + int idrow = threadIdx.y*(bdimX+k-1) ; // line's offset in sh mem // shared memory declaration extern __shared__ unsigned char roi8p[];