Fallback to junction temperature and socket power

If the card does not have edge temperature, fallback to junction
temperature. If the card only have socket power, then use socket
power instead.

Change-Id: I053a67a89cf3b29a34e82123f522c08d7dd68916


[ROCm/rdc commit: 5cfe2b4169]
Este commit está contenido en:
Bill(Shuzhou) Liu
2024-02-05 10:06:31 -06:00
padre 80d3711aca
commit d1efa59fe8
Se han modificado 3 ficheros con 15 adiciones y 3 borrados
+1 -1
Ver fichero
@@ -65,7 +65,7 @@ def config_func(config):
if key == 'field_ids':
field_ids = []
for f in node.values:
field_id = rdc.get_field_id_from_name(f)
field_id = rdc.get_field_id_from_name(str.encode(f))
if field_id.value == rdc_field_t.RDC_FI_INVALID:
print("Invalid field '%s' will be ignored." % (f))
else:
+1 -1
Ver fichero
@@ -85,7 +85,7 @@ def get_field_ids(args):
if len(field_id_str)> 0 :
for f in field_id_str:
field_id = rdc.get_field_id_from_name(f)
field_id = rdc.get_field_id_from_name(str.encode(f))
if field_id.value == rdc_field_t.RDC_FI_INVALID:
print("Invalid field '%s' will be ignored." % (f))
else: