I made a short and long version of my question if you want more detail.
Short question:
Can I use __syncthreads() in a block where I have purposedly dropped threads using return? Won't that create a deadlock?
Long question:
I have a kernel that works on an input array, in 2 steps.
During the first step, it requires 1 thread per element in the array, not less. However it will drop any excess threads if the kernel was launched with more threads per block than required.
During the second step, it requires 1 thread per element in the array, minus one, so one thread is dropped before continuing. Both steps call __syncthreads() several times.
Since __syncthreads() must be called by every thread in the block (else it will lead to a deadlock), is it safe to drop excess threads using return like I do, and later call __syncthreads() to synchronize the remaining threads?
Sample code:
template<typename T>
struct ArrayWrapper
{
T* data;
int size;
}
__global__ void myKernel(ArrayWrapper<float> input)
{
// Drop excess threads if user put too many in kernel call
if (threadIdx.x >= input.size)
{
return;
}
// From this point on, we have exactly (input.size) threads
... Do a bit of work ...
__syncthreads(); //<! IS THIS SAFE ?
... Do a bit of work ...
// The rest of the algorithm works differently
// For that we need to drop ONE thread (the "last")
if (threadIdx.x + 1 == input.size)
{
return;
}
// From this point on, we have exactly (input.size - 1) threads
... Do a lot of work ...
__syncthreads(); //<! IS THIS SAFE TOO ?
... Do a lot of work ...
}

