Blame c++/contourgl/cl/hello.cl

c76ce8
//#pragma OPENCL EXTENSION cl_khr_byte_addressable_store : enable
c76ce8
__constant char s[] = "Hello!";
c76ce8
__kernel void hello(__global char *out) {
c76ce8
   size_t tid = get_global_id(0);
c76ce8
   out[tid] = s[tid];
c76ce8
}