How to query the current performance state of your GPU with CUDA? -


preferably directly via cuda api, or failing via 3rd-party software. i'm profiling code running unusually , want check there's not funny going on p-state.

edit: on windows 7, msvc 2010 nvcc

nvidia-smi report p-state.

under linux:

man nvidia-smi  

will give help

nvidia-smi -a -l |grep "performance"  

will output repeating updated output of perf state only

under windows, find nvidia-smi.exe , run with:

nvidia-smi --help 

for command-line help.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -