Search Results

7
votes
5answers
1k views

How do you get around the maximum CUDA run-time?

I've noticed that CUDA applications tend to have a rough maximum run-time of 5-15 seconds before they will fail and exit out. I realize it's ideal to not have CUDA application run that long but as …
0
votes
4answers
89 views

CUDA: What reasons could there be for nvcc taking several minutes to compile?

I have some CUDA code that nvcc (well, technically ptxas) likes to take upwards of 10 minutes to compile. While it isn't small, it certainly isn't huge. (~5000 lines). The delay seems to …
5
votes

Have you successfully used a GPGPU?

I have been using GPGPU for motion detection (Originally using CG and now CUDA) and stabilization (using CUDA) with image processing. I've been getting about a 10-20X speedup in these situations. …
2
votes

How do you get around the maximum CUDA run-time?

My current solution is to pick a point in the calculation some percentage of the way through that I am sure the GPU I am working with is able to complete in time, save all the state information and …