X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/book_gpu.git/blobdiff_plain/ab4f4a75aa53e25425dbbc4421c45b6e9a037955..2ae394d22362fb3f71c54c11871811afcac3eed0:/BookGPU/Chapters/chapter11/code3.cu

diff --git a/BookGPU/Chapters/chapter11/code3.cu b/BookGPU/Chapters/chapter11/code3.cu
index 37d8409..5da77e6 100644
--- a/BookGPU/Chapters/chapter11/code3.cu
+++ b/BookGPU/Chapters/chapter11/code3.cu
@@ -11,8 +11,9 @@ __device__ void Bisection_device(T z, T* t, int mi,int ma,int* l)
   *l = mi-1;
 }
 
-/* Kernel to evaluates monotone spline for a sequence of query points residing in the array z of size m
-*/
+// Kernel to evaluate monotone spline for a sequence of query points 
+// residing in the array z of size m
+
 template<typename Tx, typename Ty>	
 __global__ void d_MonSplineValue(Tx* z, int K, double* t, double * alpha, double * beta, double * gamma, int T, Ty *value)
 {