I am trying to implement quickHull algorithm (for convex hull) parallely in CUDA. It works correctly for input_size <= 1 million. When I try 10 million points, the program crashes. My graphic card size is 1982 MB and all my data structures in the algorithm collectively require not more than 600 MB for this input size, which is less than 50 % of the available space.

By commenting out lines of my kernels, I found out that the crash occurs when I try to access array element and the index of the element I am trying to access is not out of bounds (double checked). The following is the kernel code where it crashes.

for(unsigned int i = old_setIndex; i < old_setIndex + old_setS[tid]; i++) 
{

    int pI = old_set[i];
    if(pI <= -1 || pI > pts.size())
    {               
        printf("Thread %d: i = %d, pI = %d\n", tid, i, pI);
        continue;
    }
    p = pts[pI];

    double d = distance(A,B,p);

    if(d > dist) {
        dist = d;
        furthestPoint = i;
        fpi = pI;
    }
}
//fpi = old_set[furthestPoint]; 
//printf("Thread %d: Furthestpoint = %d\n", tid, furthestPoint);

My code crashes when I uncomment the statements (array access and printf) after the for loop. I am unable to explain the error as furthestPoint is always within bounds of old_set array size. Old_setS stores the size of smaller arrays that each thread can operate on. It crashes even if just try to print the value of furthestPoint (last line) without the array access statement above it.

There's no problem with the above code for input size <= 1 million. Am I overflowing some buffer in the device in case of 10 million?

Please help me in finding the source of the crash.

link|improve this question

50% accept rate
Try checking the actuall value of the adress that is crashing. It might not be addressable. – Dani Aug 18 '11 at 3:55
When you say "crash" what do you mean? Are you getting the "windows device stopped responding and was reset" errors from the WDDM driver on a windows platform, or something else? – talonmies Aug 18 '11 at 6:55
@talonmies : My program crashes and the screen display goes off for a second and comes back with this error: "Display Driver NVIDIA windows kernel mode driver, Version 275.33 stopped responding and has successfully recovered." And my executable abruptly closes. – alpha_cod Aug 18 '11 at 8:01
feedback

1 Answer

up vote 2 down vote accepted

There is no out of bounds memory access in your code (or at least not one which is causing the symptoms you are seeing).

What is happening is that your kernel is being killed by the display driver because it is taking too much time to execute on your display GPU. All CUDA platform display drivers include a time limit for any operation on the GPU. This exists to prevent the display from freezing for a sufficiently long time that either the OS kernel panics or the user panics and thinks the machine has crashed. On the windows platform you are using, the time limit is about 2 seconds.

What has partly mislead you into thinking the source of the problem is array adressing is the commenting out of code makes the problem disappear. But what really happens there is an artifact of compiler optimization. When you comment out a global memory write, the compiler recognizes that the calculations which lead to the value being stored are unused, and it removes all that code from the assembler code it emits (google "nvcc dead code removal" for more information). That has the effect of making the code run much faster and puts it under the display driver time limit.

For workarounds see this recent stackoverflow question and answer

link|improve this answer
Thanks for the information. During the step of crash, I run 2 threads which run a maximum of 6 million O(1) computations which might not take more than a few seconds. In the future calls to the kernel, there will be more threads with fewer computations, but initially it starts of with about 2 threads having a load of 3.5 million and 6.5 million, which still might not trigger the driver reset event right..? – alpha_cod Aug 18 '11 at 8:21
2 threads? That is the source of your problem. That utilizes perhaps 0.5% of the total computational capacity of your GPU, and explains why it is so slow. You need anything from 192 to 384 active threads per MP of your GPU just to cover all the architectural latency in the GPU, typically you would run anything from a few tens of thousands to a few million threads per CUDA kernel launch. It sounds like you should read the CUDA best practices guide that ships with the SDK to get a better feeling for how to use the GPU efficicently. – talonmies Aug 18 '11 at 8:33
Alright, I'll try to make that step parallel as well before calling this kernel. I make thousands to million threads per CUDA kernel launch in future calls, but initially just start of with 2 threads having heavy loads. Just to know, please let me know the speed of each CUDA thread in operations/sec. Thanks. – alpha_cod Aug 18 '11 at 9:15
That is a "how long is a piece of string?" question - there is no answer. Fundamentally, threads don't have speed, the hardware that runs them does. But the hardware also has a lot of latency. It is the programmer's job to provide enough threads so that the hardware always has work to do and the latency of the architecture can be successfully hidden. – talonmies Aug 18 '11 at 9:35
feedback

Your Answer

 
or
required, but never shown

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