]> AND Private Git Repository - book_gpu.git/blobdiff - BookGPU/Chapters/chapter3/code/kernMedianRegTri9.cu
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
ch zulu
[book_gpu.git] / BookGPU / Chapters / chapter3 / code / kernMedianRegTri9.cu
index 29922a31b78030da1b212c1ddb45e6bebe7037e2..c6137066f1db0e680c19f3172fb97d214650d11f 100755 (executable)
@@ -8,9 +8,9 @@ __global__ void kernel_Median3RegSort9( short *output,
   a0 = tex2D(tex_img_ins, j-1, i-1) ;      // fetching values
   a1 = tex2D(tex_img_ins, j  , i-1) ;
   a2 = tex2D(tex_img_ins, j+1, i-1) ;
-  a3 = tex2D(tex_img_ins, j-1, i) ;
-  a4 = tex2D(tex_img_ins, j  , i) ;
-  a5 = tex2D(tex_img_ins, j+1, i) ;
+  a3 = tex2D(tex_img_ins, j-1, i  ) ;
+  a4 = tex2D(tex_img_ins, j  , i  ) ;
+  a5 = tex2D(tex_img_ins, j+1, i  ) ;
   a6 = tex2D(tex_img_ins, j-1, i+1) ;
   a7 = tex2D(tex_img_ins, j  , i+1) ;
   a8 = tex2D(tex_img_ins, j+1, i+1) ;