I am new to OpenCL. I have worked with OpenCL kernel with 1-D data. But when I tried to pass a 3-D pointer, it fails to build the kernel. To be specific I'm getting CL_BUILD_PROGRAM_FAILURE. Here's the pseudo code for the kernel I'm trying to build -

__kernel void 3D_Test(__global float ***array)
{

x = get_global_id(0);
y = get_global_id(1);
z = get_global_id(2);

array[x][y][z] = 10.0;

}

Could anyone give me an idea on what's wrong with the code? Thanks in advance!

link|improve this question
You should check the build log, get it with clGetProgramBuildInfo. – Matias Valdenegro Jul 18 '11 at 20:29
You might also have a look at the Image3D type, supported in OpenCL 1.1, which lets you store and pass 3D arrays quite easily. – David Lively Aug 21 '11 at 20:04
feedback

2 Answers

up vote 1 down vote accepted

That's not valid OpenCL C (that's why it doesn't compile), for a 3D array, you will have to use a linearlized version of that array, just create a normal array of appropiate size (sizeX * sizeY * sizeZ) and index it this way:

int index = x + y * sizeX + z * sizeX * sizeY;

Other option is to use a 3D image with clCreateImage3D

link|improve this answer
@Matias..thanks a lot for your help. It worked!! – andromida Jul 18 '11 at 23:37
feedback

You'll have first to ensure in some way your array as enough space, at all levels...

How is your array declared or allocated?

link|improve this answer
I'll edit the answer when I'll get a reply, so it should be a «real» one... : ) – Macmade Jul 18 '11 at 18:39
@Macmade..I have allocated them in the host code. But I was wondering if it's an issue of using 3-D array in kernel. Because the same code when I pass '*array' and use 'array[x] = 10', there is no problem with the compilation. Is there anything wrong with the syntax? I coudn't find am exaple with 3-D array in OpenCL. – andromida Jul 18 '11 at 18:48
To be specific I am getting 'CL_BUILD_PROGRAM_FAILURE' error :( – andromida Jul 18 '11 at 18:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.