I receice this error when try to use nsight profiler.I am using linux.
From command line I can use the nvprof ok.
If I uncheck the “Enable concurrent kernel profiling” I am receiving “The application returned a non zero return code”
I receice this error when try to use nsight profiler.I am using linux.
From command line I can use the nvprof ok.
If I uncheck the “Enable concurrent kernel profiling” I am receiving “The application returned a non zero return code”
Thanks for reporting this issue. Which version of the CUDA toolkit and driver are you using?
Hello , I am using CUDA 6.0 , Cuda compilation tools, release 6.0, V6.0.1
and driver
NVIDIA-SMI 331.62 Driver Version: 331.62
Now , I can see that when I try to profile it shows:
nsight unable to profile application.the application being profiled returned a non-zero return code
regardless checking/unchecking the “Enable concurrent kernel profiling”.
Is this a bug?
If you can inform me about this.
Thank you!
i’m also having this issued after upgradgin to cu6.0. any idea how to go around this??
I was having the same issue using CUDA 6.0. I added a call to cudaDeviceReset() at the end of my program to flush the profile data (as specified in section 1.4 of the CUDA Profiler User’s Guide). Once I took that call out, my program profiled fine. Profiling information seems complete and valid. Don’t know if it matters (as far as this issue goes) but I am also using cudaProfilerStart() and cudaProfilerStop() to control profiling from within my program.