How to measure all available metrics/events in one command line with nvprof

Hi everyone

I just started to use nvprof. I am wondering if there is a single command in nvprof to measure/report all available metrics/events. I need all numbers to use them in another application. I can use :

nvprof --events <all available events> --metrics <all available metrics> <application>

but it would be a very long command line with about 400 events/metrics.

I`ll be so appreciated if anyone could help me with this.

If you are using CUDA toolkit version 5.5, you can do the following:

nvprof --events all --metrics all

This will tell nvprof to collect all available events/metrics on the device.