Browse Source

OpenCL: use 'opencl kernels' instead of 'opencl codelet' to avoid confusion with starpu codelet object

Nathalie Furmento 14 years ago
parent
commit
26d55a4e58
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/drivers/opencl/driver_opencl.c
  2. 1 1
      src/drivers/opencl/driver_opencl_utils.c

+ 1 - 1
src/drivers/opencl/driver_opencl.c

@@ -313,7 +313,7 @@ void _starpu_opencl_init(void)
                         }
                 }
 
-                // Get location of OpenCl codelet source files
+                // Get location of OpenCl kernel source files
                 _starpu_opencl_program_dir = getenv("STARPU_OPENCL_PROGRAM_DIR");
 
                 // initialise internal structures

+ 1 - 1
src/drivers/opencl/driver_opencl_utils.c

@@ -112,7 +112,7 @@ char *_starpu_opencl_load_program_source(const char *filename)
         source[x] = '\0';
 
 
-        _STARPU_DEBUG("OpenCL codelet <%s>\n", source);
+        _STARPU_DEBUG("OpenCL kernel <%s>\n", source);
 
         fclose(fh);