Search code examples
c++cudansight

CUDA Nsight - save informations about a kernel execution to an excel file


Is there any way to save the profiling of a kernel in some kind of spreadsheet file? That would help me greatly to have average values for my kernel execution times


Solution

  • The nvprof command line profiler has a CSV output option which can be used to save kernel execution statistics.

    The legacy command line profiler also has a CSV output option.

    These CSV files can also later be imported into the visual profiler.