Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I made some kernels for testing bandwidth and they do no useful computations. A minimal example is

__global__ void testKernel(float* a) 
{
    unsigned int i = blockIdx.x*blockDim.x + threadIdx.x;
    float x;
    x = a[i];
}

When I compile, I get (not surprisingly)

warning: variable "x" was set but never used

and the kernel runs as quickly as an empty kernel:

__global__ void donothing() 
{
}

This indicates that the read of a[i] has been optimized out.

I have tried tricks such as

volatile float x;

if(x);

(void)(x;)

and they suppress the warning, but the kernel still finishes too quickly.

How can I make sure that the useless instructions actually get executed?

I found the option CU_JIT_OPTIMIZATION_LEVEL but google provides mostly links to the documentation and not how to use it. Would this option help me and how do I use it?

share|improve this question
I have always made these things useful, so they can't eliminate it. Is this an option for you? – Patrick87 Jul 30 '11 at 19:09
try x = a[i] + 0 – Pavan Yalamanchili Jul 30 '11 at 19:28
@Pavan that won't help. x is still unused. – stardt Jul 30 '11 at 20:07
@Patrick87 Using the data would take time and I only want to check the memory bandwidth – stardt Jul 30 '11 at 20:09

1 Answer

Try introducing a branch which stores the variable:

__global__ void testKernel(float* a, float *b) 
{
    unsigned int i = blockIdx.x*blockDim.x + threadIdx.x;
    float x;
    x = a[i];

    if(b)
    {
      *b = x;
    }
}

The cost of the branch compared to the cost of memory transfer is negligible.

At the kernel launch site, simply pass a null pointer:

testKernel<<<...>>>(a, static_cast<float*>(0));

nvcc will not perform constant folding at this granularity, so your load should not be removed because the compiler cannot prove it is useless.

share|improve this answer
You can also often use if (threadIdx.x > -2) {} or something else bogus like that to fool the compiler into keeping the code around. – harrism Aug 1 '11 at 6:15
Is it not possible to prevent the optimization without adding code that actually does something? – stardt Aug 1 '11 at 16:46
@stardt I don't know of a way to do it without introducing the possibility of using the loaded value in some way. – Jared Hoberock Aug 4 '11 at 0:48

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.