2
0
mirror of https://github.com/munin-monitoring/contrib.git synced 2018-11-08 00:59:34 +01:00

nvidia_smi: Get memory usage even if nvmlDeviceGetUtilizationRates is not available

This commit is contained in:
Thomas Riccardi 2012-08-19 19:42:14 +02:00
parent 27e4cf0fe3
commit 1db89fc9a8

View File

@ -110,7 +110,16 @@ for (my $i = 0; $i < $gpuCount; $i++)
else
{
$gpuUtil = "N/A";
$memUtil = "N/A";
($ret, my $memory) = nvmlDeviceGetMemoryInfo($handle);
if ($ret == $NVML_SUCCESS)
{
$memUtil = $memory->{"used"} / $memory->{"total"} * 100;
}
else
{
$memUtil = "N/A";
}
}
print "GPU_TEMP_$i.value $gpuTemp\n";