Marco A.
Marco A.

Reputation: 43662

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

Upvotes: 1

Views: 823

Answers (2)

Totem
Totem

Reputation: 236

If you are referring to Nsight Visual Studio Edition, you can export to a number of file formats. See the Nsight Visual Studio User guide Analysis Reports chapter

Upvotes: 1

Robert Crovella
Robert Crovella

Reputation: 152073

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.

Upvotes: 1

Related Questions