OpenCLTutorial/lesson1_kernel.cl
2017-08-08 05:56:57 -07:00

6 lines
204 B
Common Lisp

#pragma OPENCL EXTENSION cl_khr_byte_addressable_store : enable
__constant char hw[] = "Hello World\n";
__kernel void hello(__global char * out) {
size_t tid = get_global_id(0);
out[tid] = hw[tid];
}