DEV Community

Brandon Rozek
Brandon Rozek

Posted on • Originally published at brandonrozek.com on

Finding Cuda Errors

When cuda fails, it fails silently. To combat this, I have gotten into a habit of checking for a failed status for every cuda memory allocation, kernel execution etc. The following is a C++ macro I wrote that checks if a previous cuda call has failed and then prints the current line and file of the macro.

#define checkCudaError() { if (cudaGetLastError() != cudaSuccess) { printf("[%s:%d] A previous CUDA call failed.\n", __FILE__ , __LINE__ ); }

Enter fullscreen mode Exit fullscreen mode

I recommend using this macro after every cuda call. For example,

cudaMemcpy(dst, src, size, cudaMemcpyHostToDevice); checkCudaError();

Enter fullscreen mode Exit fullscreen mode

During runtime if the call failed, then you will see:

[example.cu:14] A previous CUDA call failed.

Enter fullscreen mode Exit fullscreen mode

Note that it states whether or not a previous cuda call has failed and not where it has failed at. By putting the macro after every cuda call, you can narrow down which call causes the failure to occur.

Top comments (0)