little tweaks, tomorrow/this week will hook up the arguments and data loading
This commit is contained in:
@@ -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;
|
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!!!!!!!!!!!!!!!!!!!!!";
|
std::string in = "hello!!!!!!!!!!!!!!!!!!!!!";
|
||||||
cl_mem buff = clCreateBuffer(
|
cl_mem buff = clCreateBuffer(
|
||||||
c.getContext(), CL_MEM_READ_WRITE | CL_MEM_COPY_HOST_PTR,
|
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");
|
c.store_buffer(buff, "buffer_1");
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user