mirror of
https://github.com/munin-monitoring/contrib.git
synced 2018-11-08 00:59:34 +01:00
Merge pull request #166 from Niluge-KiWi/master
nvidia_smi: Get memory usage even if nvmlDeviceGetUtilizationRates is not available
This commit is contained in:
commit
8e1ab117aa
@ -110,8 +110,17 @@ for (my $i = 0; $i < $gpuCount; $i++)
|
||||
else
|
||||
{
|
||||
$gpuUtil = "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";
|
||||
print "GPU_FANSPEED_$i.value $gpuFanSpeed\n";
|
||||
|
Loading…
Reference in New Issue
Block a user