Renamed amdsmi_get_metrics_table to amdsmi_get_cpu_metrics_table

Renamed structs to be more conistent with what they are calling

Signed-off-by: Maisam Arif <maisarif@amd.com>
Change-Id: I6f2be2fcb76f004aa592f0dad8545565700ccd4b


[ROCm/amdsmi commit: f831cf49f7]
This commit is contained in:
Maisam Arif
2024-02-06 17:40:10 -06:00
parent aa633783aa
commit b6f62bb651
8 changed files with 51 additions and 51 deletions
+10 -10
View File
@@ -5958,13 +5958,13 @@ except AmdSmiException as e:
print(e)
```
### amdsmi_get_metrics_table_version
### amdsmi_get_hsmp_metrics_table_version
Description: Get metrics table version.
Description: Get HSMP metrics table version.
Output: amdsmi metrics table version
Output: amdsmi HSMP metrics table version
Exceptions that can be thrown by `amdsmi_get_metrics_table_version` function:
Exceptions that can be thrown by `amdsmi_get_hsmp_metrics_table_version` function:
* `AmdSmiLibraryException`
@@ -5977,19 +5977,19 @@ try:
print("No CPU sockets on machine")
else:
for processor in processor_handles:
met_ver = amdsmi_get_metrics_table_version(processor)
met_ver = amdsmi_get_hsmp_metrics_table_version(processor)
print(met_ver)
except AmdSmiException as e:
print(e)
```
### amdsmi_get_metrics_table
### amdsmi_get_hsmp_metrics_table
Description: Get metrics table
Description: Get HSMP metrics table
Output: metric table data
Output: HSMP metric table data
Exceptions that can be thrown by `amdsmi_get_metrics_table` function:
Exceptions that can be thrown by `amdsmi_get_hsmp_metrics_table` function:
* `AmdSmiLibraryException`
@@ -6002,7 +6002,7 @@ try:
print("No CPU sockets on machine")
else:
for processor in processor_handles:
mtbl = amdsmi_get_metrics_table(processor)
mtbl = amdsmi_get_hsmp_metrics_table(processor)
print(mtbl['accumulation_counter'])
print(mtbl['max_socket_temperature'])
print(mtbl['max_vr_temperature'])