Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm getting the following error when compiling my kernel:

    Error: (0): Texture/surface reference must be simple name

I reduced it down as much as possible to the following example kernel, which demonstrates the problem:

__kernel void accum(__global __read_only image2d_t accumulateds) {
    int2 pos = (int2)(get_global_id(0),get_global_id(1));
    float4 accum = read_imagef(accumulateds,CLK_RGBA|CLK_ADDRESS_CLAMP|CLK_FILTER_NEAREST,pos);
}

I found some unhelpful forum. posts., but otherwise no mention of this error whatsoever. Additionally, I have seen example code that looks similar to the above example. My GPU (GeForce 580M GTX) should support reading images (it supports writing, for one thing).

share|improve this question

2 Answers

up vote 0 down vote accepted

After much deliberation, I have found the cause. My guess is that read_imagef is a macro that can't understand | instructions, so they hardcoded a preprocessor check against it. Apparently, this issue is specific to NVIDIA hardware (or maybe my particular implementation), because code written the first way works for other people.

Method 1 (fails):

float4 my_value = read_imagef(my_image,CLK_FILTER_NEAREST|CLK_ADDRESS_CLAMP,my_position);

Method 2 (works):

sampler_t my_sampler = CLK_FILTER_NEAREST|CLK_ADDRESS_CLAMP;
float4 my_value = read_imagef(my_image,my_sampler,my_position);

As an additional note, in my original code I |ed in CLK_RGBA. This is incorrect, and will cause an error. It must be one of the fields here.

share|improve this answer

Firstly I was not able to add comments to the question or to the posted answer so I am posting this as an answer. Sorry about that.

So I am getting this same error even after adding the sampler flags as you specified. I even tried passing it as a parameter to the kernel but the error persists..

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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