* Ajout d'un exemple CUDA non-openGL (AddVector.cu)
[GPU.git] / WCudaMSE / Student_Cuda / src / cpp / core / 01_Hello / 02_hello_add.cu
index 70f3908..e4b3275 100755 (executable)
@@ -63,7 +63,7 @@ __host__ int addScalarGPU(int a, int b)
     int* ptrDev_c;     // on device (GPU)\r
 \r
     // Specifier nb thread : ici 1 thread au total !\r
-    dim3 dg = dim3(1,1,1);\r
+    dim3 dg = dim3(1, 1, 1);\r
     dim3 db = dim3(1, 1, 1);\r
 \r
     // Debug\r