Is there a way to get the kernel execution time in nvprof like for a metric?
for example, to get the dram read transactions I type:
nvprof --metrics dram_read_transactions ./myprogram
My question is: is there something like
nvprof --metrics execution_time ./myprogram
I would like to collect a small set of metrics in one command line instead of having to use
nvprof ./myprogram
as a separate command.
I believe you are looking for: nvprof --print-gpu-trace ./myprogram