7 lines
204 B
Common Lisp
7 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];
|
||
|
}
|