Blacklisted_Guy 2 Posted May 13, 2017 Hello there, I've been trying to learn openCL and use it in houdini. To start I imported the position attribute and generated a kernel, but it keeps spitting out this error (without editing or adding things to the code) OpenCL Exception: clSetKernelArg (-51) Share this post Link to post Share on other sites
schwungsau 281 Posted May 15, 2017 without any code example its impossible to say.... Share this post Link to post Share on other sites
Blacklisted_Guy 2 Posted May 15, 2017 11 minutes ago, schwungsau said: without any code example its impossible to say.... kernel void kernelName( int P_length, global float * P ) { int idx = get_global_id(0); if (idx >= P_length) return; } This is the code I'm running. As of now it's just the generated kernel. Share this post Link to post Share on other sites