mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 14:16:09 -06:00
8 lines
No EOL
222 B
Common Lisp
8 lines
No EOL
222 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];
|
|
} |