Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Compute Visual Profiler doesn't Fill the .csv files

Tags:

cuda

Im trying to benchmark my CUDA application with Compute Visual Profiler. However the program is unable to fill any data in the .csv files. All the paths to CUDA are set properly in the profiler application.

After few runs on the exe file it returns the error:

Error in Profiler data file
'C:/..../temp_compute_profiler_0_0.csv'
at line number 1. No column found.
like image 595
jwdmsd Avatar asked Mar 20 '26 20:03

jwdmsd


1 Answers

There are many possible reasons... some of them to check for

  • the execution time out. make sure that the profiler is not set to time out too soon
  • the program doesn't finish executing (even if the kernel does). make sure there isn't a getchar at the end of your code
  • try adding an explicit call to cudaThreadExit at the end of your code, and check for errors.
like image 133
jmilloy Avatar answered Mar 24 '26 23:03

jmilloy



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!