Jump to content

OpenCL error


Blacklisted_Guy

Recommended Posts

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)

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...