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

Private GIT Repository
ch zulu
[book_gpu.git] / BookGPU / Chapters / chapter3 / code / kernMedianForget1pix3.cu
index a34d7845d6a422c4d90ab912d0cdd528289296b2..5a04bd277ac8939e809ad965e40e2b34eed5f0fb 100755 (executable)
@@ -11,8 +11,7 @@ __device__ inline void s(int* a, int* b)
 #define minmax5(a, b, c, d, e) s(a, b); s(c, d); min3(a, c, e); max3(b, d, e);
 #define minmax6(a, b, c, d, e, f) s(a,d); s(b, e); s(c, f); min3(a, b, c); max3(d, e, f);
 
-__global__ void kernel_medianForget1pix3( short *output,
-                                                                                 int i_dim, int j_dim)
+__global__ void kernel_medianForget1pix3( short *output, int i_dim, int j_dim)
 {  
   int j = __mul24(blockIdx.x,blockDim.x) + threadIdx.x ; 
   int i = __mul24(blockIdx.y,blockDim.y) + threadIdx.y ;