TP Saucisson.
[GPU.git] / WCudaMSE / Student_Cuda_Image / src / cpp / core / 06_Convolution / moo / host / Convolution.cu
index 817b37b..9bcc12b 100644 (file)
@@ -51,6 +51,7 @@ void Convolution::runGPU(uchar4* ptrDevPixels)
     toGrayscale<<<dg,db>>>(this->ptrDevImageSource, this->w, this->h);
 
     cudaDeviceSynchronize(); // Attend que toute l'image source ait été passée en niveau de gris.
+
     convolution<<<dg,db>>>(ptrDevPixels, this->w, this->h);
 
     //HANDLE_ERROR(cudaDeviceSynchronize()); // Pour flusher les 'printf' (pour le DEBUG).