Here is a hackish way I tried to see if it will work.
#include <stdio.h>
#include <cuda.h>
#include <cuda_runtime.h>
#include <cuda_runtime_api.h>
__global__ static
void kernel(int *count, float *data)
{
count += threadIdx.x;
data += gridDim.x * threadIdx.x;
int i = blockIdx.x;
if (i < gridDim.x - 1) {
data[i] = i + 1;
atomicAdd(count, 1);
return;
}
while (atomicMin(count, i) != i);
float tmp = i + 1;
for (int j = 0; j < i; j++) tmp += data[j];
data[i] = tmp;
}
int main(int argc, char **args)
{
int num = 100;
if (argc >= 2) num = atoi(args[1]);
int bytes = num * sizeof(float) * 32;
float *d_data; cudaMalloc((void **)&d_data, bytes);
float *h_data = (float *)malloc(bytes);
for (int i = 0; i < 32 * num; i++) h_data[i] = -1; // Being safe
int h_count[32] = {1};
int *d_count; cudaMalloc((void **)&d_count, 32 * sizeof(int));
cudaMemcpy(d_count, &h_count, 32 * sizeof(int), cudaMemcpyHostToDevice);
cudaMemcpy(d_data, h_data, bytes, cudaMemcpyHostToDevice);
kernel<<<num, 32>>>(d_count, d_data);
cudaMemcpy(&h_count, d_count, 32 * sizeof(int), cudaMemcpyDeviceToHost);
cudaMemcpy(h_data, d_data, bytes, cudaMemcpyDeviceToHost);
for (int i = 0; i < 32; i++) {
printf("sum of first %d from thread %d is %d \n", num, i, (int)h_data[num -1]);
h_data += num;
}
cudaFree(d_count);
cudaFree(d_data);
free(h_data - num * 32);
}
I can not guarantee this will always work. But the breaking point on my card (320M) seems to be for num = 5796. Perhaps a hardware limit of some kind different for each card ?
EDIT
The answer to this is that n * (n + 1) / 2 > 2^24 for n > 5795 (which is the single precision limit). The accuracy of integer values beyond this point is undefined. Thanks to talonmies for pointing it out.
./a.out 5795
sum of first 5795 from thread 0 is 16793910
sum of first 5795 from thread 1 is 16793910
sum of first 5795 from thread 2 is 16793910
sum of first 5795 from thread 3 is 16793910
sum of first 5795 from thread 4 is 16793910
sum of first 5795 from thread 5 is 16793910
sum of first 5795 from thread 6 is 16793910
sum of first 5795 from thread 7 is 16793910
sum of first 5795 from thread 8 is 16793910
sum of first 5795 from thread 9 is 16793910
sum of first 5795 from thread 10 is 16793910
sum of first 5795 from thread 11 is 16793910
sum of first 5795 from thread 12 is 16793910
sum of first 5795 from thread 13 is 16793910
sum of first 5795 from thread 14 is 16793910
sum of first 5795 from thread 15 is 16793910
sum of first 5795 from thread 16 is 16793910
sum of first 5795 from thread 17 is 16793910
sum of first 5795 from thread 18 is 16793910
sum of first 5795 from thread 19 is 16793910
sum of first 5795 from thread 20 is 16793910
sum of first 5795 from thread 21 is 16793910
sum of first 5795 from thread 22 is 16793910
sum of first 5795 from thread 23 is 16793910
sum of first 5795 from thread 24 is 16793910
sum of first 5795 from thread 25 is 16793910
sum of first 5795 from thread 26 is 16793910
sum of first 5795 from thread 27 is 16793910
sum of first 5795 from thread 28 is 16793910
sum of first 5795 from thread 29 is 16793910
sum of first 5795 from thread 30 is 16793910
sum of first 5795 from thread 31 is 16793910
--
I edited my former code which was using just one block. This is more representative of a real world threads / blocks (the memory accesses are weird and will be slow as hell, but they were done to quickly port my old test code to use multiple threads).
Looks like there are some cases when you can synchronize across blocks, but mostly depends on you knowing certain things before hand (for this particular case, I was only syncing n - 1 blocks before performing an insanely useless count on the last block).
This is a proof of concept only, do not take the code seriously