diff options
Diffstat (limited to 'src/com/mbien/opencl/CLKernel.java')
-rw-r--r-- | src/com/mbien/opencl/CLKernel.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/com/mbien/opencl/CLKernel.java b/src/com/mbien/opencl/CLKernel.java index cb03cf8e..0dc9db19 100644 --- a/src/com/mbien/opencl/CLKernel.java +++ b/src/com/mbien/opencl/CLKernel.java @@ -12,11 +12,11 @@ import static com.mbien.opencl.CL.*; /** * High level abstraction for an OpenCL Kernel. - * CLKernel is not threadsafe. - * "A kernel is a function declared in a program. A kernel is identified by the <code>kernel</code> qualifier + * A kernel is a function declared in a program. A kernel is identified by the <code>kernel</code> qualifier * applied to any function in a program. A kernel object encapsulates the specific <code>kernel</code> * function declared in a program and the argument values to be used when executing this - * <code>kernel</code> function." + * <code>kernel</code> function. + * CLKernel is not threadsafe. * @author Michael Bien */ public class CLKernel implements CLResource/*, Cloneable*/ { |