8

I run a tensorflow code in the GPU. The image bellow shows the nvidia-smi info::

I want ask what does 'Off' mean in the output of nvidia-smi? Also what does the ""C"" type means here??

My code run in the GPU or CPU in this situation????

enter image description here

programmer
  • 577
  • 1
  • 9
  • 21

1 Answers1

11

"C" stands for compute. "G" stands for graphics. Both run on the graphics card. "Off" is in reference to "Persistence-M", which stands for Persistence Mode which keeps the driver always loaded.

Greenbeard
  • 508
  • 5
  • 14