minor update

This commit is contained in:
Blaise Tine
2021-08-07 01:10:02 -04:00
parent bf8f249754
commit dd984ceb45
6 changed files with 101363 additions and 9 deletions

View 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);
}