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

master
mitchellhansen 8 years ago
parent 5d9d3c4f4d
commit 0b9010b007

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

@ -47,7 +47,7 @@ int main(){
std::string in = "hello!!!!!!!!!!!!!!!!!!!!!";
cl_mem buff = clCreateBuffer(
c.getContext(), CL_MEM_READ_WRITE | CL_MEM_COPY_HOST_PTR,
sizeof(char) * 128, NULL, NULL);
sizeof(char) * 128, &in[0], NULL);
c.store_buffer(buff, "buffer_1");

Loading…
Cancel
Save