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:
parent
27e4cf0fe3
commit
1db89fc9a8
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user