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

Private GIT Repository
modif
[book_gpu.git] / BookGPU / Chapters / chapter3 / code / medianGeneric.cu
old mode 100644 (file)
new mode 100755 (executable)
index bf41842..dff2a92
@@ -18,7 +18,7 @@ __global__ void kernel_medianR( short *output,
   for(ic=0; ic<256; ic++)
        {
          cpt += histogram[ ic ] ;
-         // selection of 50% percentil
+         // selection of the median valu
          if ( cpt > ((2*r+1)*(2*r+1))>>1 ) break ; 
        } 
   output[ __mul24(i, j_dim) +j ] =  ic ;