FIX type error for gpu temp
This commit is contained in:
parent
1ca704f231
commit
360f08f4c9
2
core
2
core
|
@ -1 +1 @@
|
||||||
Subproject commit 2c001cb080eb51d39be198a0e9b19c011dae2df5
|
Subproject commit 9b0b36d18a7d69535a9516712bfb53f7aafeb4f2
|
|
@ -12,6 +12,7 @@ return function(update_freq)
|
||||||
local PLOT_HEIGHT = 56
|
local PLOT_HEIGHT = 56
|
||||||
local NA = 'N/A'
|
local NA = 'N/A'
|
||||||
local __string_match = string.match
|
local __string_match = string.match
|
||||||
|
local __tonumber = tonumber
|
||||||
|
|
||||||
|
|
||||||
-----------------------------------------------------------------------------
|
-----------------------------------------------------------------------------
|
||||||
|
@ -166,7 +167,7 @@ return function(update_freq)
|
||||||
= __string_match(nvidia_settings_glob, NV_REGEX)
|
= __string_match(nvidia_settings_glob, NV_REGEX)
|
||||||
local mem_utilization = used_memory / total_memory * 100
|
local mem_utilization = used_memory / total_memory * 100
|
||||||
|
|
||||||
common.threshold_text_row_set(internal_temp, temp_reading)
|
common.threshold_text_row_set(internal_temp, __tonumber(temp_reading))
|
||||||
common.text_rows_set(clock_speed, 1, gpu_frequency..' Mhz')
|
common.text_rows_set(clock_speed, 1, gpu_frequency..' Mhz')
|
||||||
common.text_rows_set(clock_speed, 2, memory_frequency..' Mhz')
|
common.text_rows_set(clock_speed, 2, memory_frequency..' Mhz')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue