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

Private GIT Repository
new
[book_gpu.git] / BookGPU / Chapters / chapter11 / code3.cu
index fa658eb416672d196039da889676b3a2f0f70132..5da77e6dd84693d088b50ca066bd5d5a78b84091 100644 (file)
@@ -1,5 +1,5 @@
 template<typename T>
-__device__ void Bisection_device(T z, T* t, int mi, int ma,  int* l)
+__device__ void Bisection_device(T z, T* t, int mi,int ma,int* l)
 {
   int i; ma--;
   while(1) {
@@ -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)
 {