DeepPowder
DeepPowder

Reputation: 3

How to run NVPROF that contains no CUDA code?

Want to baseline a standard fortran code that does not contain cuda code before I upgrade it. Can I do that and if so, how?

Upvotes: 0

Views: 132

Answers (1)

jefflarkin
jefflarkin

Reputation: 1279

If you have CUDA 7.5 you can do the following.

nvprof --cpu-profiling on ./a.out

Upvotes: 2

Related Questions