minor update
This commit is contained in:
6
tests/opencl/oclprintf/kernel.cl
Normal file
6
tests/opencl/oclprintf/kernel.cl
Normal file
@@ -0,0 +1,6 @@
|
||||
__kernel void oclprintf (__global const int *A)
|
||||
{
|
||||
int gid = get_global_id(0);
|
||||
int value = A[gid];
|
||||
printf("Print Test! value[%d]=%d\n", gid, value);
|
||||
}
|
||||
Reference in New Issue
Block a user