Added args and buffer handling, but now clEnqueueNDRangeKernel is failing

with the error invalid command queue. Haven't seen that one before, and
cursory google suggests it's a problem with MBP's. Fun! I'll keep taking
a look, and I'll try it on my windows machine here soon
This commit is contained in:
2016-08-29 18:51:46 -07:00
parent 0c70c24a52
commit c3902c2f6e
4 changed files with 40 additions and 14 deletions

5
kernels/minimal_kernel.c Normal file
View File

@@ -0,0 +1,5 @@
__kernel void min_kern(__global char* in)
{
int a = 10;
printf("%s\n", "this is a test string\n");
}