Created
September 12, 2021 03:42
-
-
Save sandeepkumar-skb/a6f71f7c8c6f1f28c20a7a44c9ea2202 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pynvml import * | |
nvmlInit() | |
deviceCount = nvmlDeviceGetCount() | |
# assume its 1 for now | |
handle = nvmlDeviceGetHandleByIndex(0) | |
util = nvmlDeviceGetUtilizationRates(handle) | |
print("GPU Util: ", util.gpu) | |
print("GPU Mem Util: ", util.memory) | |
nvmlShutdown() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment