little tweaks, tomorrow/this week will hook up the arguments and data loading

This commit is contained in:
2016-08-29 21:31:04 -07:00
parent 5d9d3c4f4d
commit 0b9010b007
2 changed files with 7 additions and 3 deletions

View File

@@ -1,5 +1,9 @@
__kernel void min_kern(__global char* in)
__kernel void min_kern(
global char* in,
global char* map,
global int3 map_dim)
{
int a = 10;
printf("%s\n", "this is a test string\n");
size_t id = get_global_id(0);
printf("%c%i\n", in[id], id);
}