OpenCL* for CPU
Ask questions and share information on Intel® SDK for OpenCL™ Applications and OpenCL™ implementations for Intel® CPU.
Announcements
This forum covers OpenCL* for CPU only. OpenCL* for GPU questions can be asked in the GPU Compute Software forum. Intel® FPGA SDK for OpenCL™ questions can be ask in the FPGA Intel® High Level Design forum.
1719 Discussions

Error 46 : clCreateKernel

nikey1
Beginner
1,168 Views
I am getting the error 46when the clCreateKernel function is called. What exactly is the reason for this error?
I suspect its the problem with my global size and local size distribution.

I am trying to run the kernel with a two dimensional grid. There are 16 elements so I want 16 threads.
I want 4 work groups each with 4 threads.

so this is how I had done
[cpp]size_t globalws[2] = {4,4}; size_t localws = 4; [/cpp]
In the clEnqueueNDRangekernel, I have specified the no. of work dimensions as 2.

The kernel is as follows..
[cpp]__kernel void buffcpy(__global const char* src, __global char* dst, const int len){ int idx = get_global_id(0); int ids = get_global_size(0); int i; for(i=idx;i = src; } }[/cpp]
Am I doing it the right way ??
0 Kudos
1 Reply
Raghupathi_M_Intel
1,168 Views
Are you certain its error 46 and not -46? Error -46 means your kernel name is invalid. What's the name of the kernel you are passing to clCreateKernel?

Raghu
0 Kudos
Reply