diff --git a/docs/reference/amdsmi-py-api.md b/docs/reference/amdsmi-py-api.md index 9f0b2bbbab..a30f2a1f11 100644 --- a/docs/reference/amdsmi-py-api.md +++ b/docs/reference/amdsmi-py-api.md @@ -703,8 +703,8 @@ Output: Dictionary with fields Field | Description ---|--- -`current_socket_power` | current socket power -`average_socket_power` | average socket power +`current_socket_power` | current socket power; Mi300+ Series Cards +`average_socket_power` | average socket power; Navi + Mi 200 and earlier Series cards `gfx_voltage` | voltage gfx `soc_voltage` | voltage soc `mem_voltage` | voltage mem diff --git a/include/amd_smi/amdsmi.h b/include/amd_smi/amdsmi.h index 2ad4a30e2a..02a0117772 100644 --- a/include/amd_smi/amdsmi.h +++ b/include/amd_smi/amdsmi.h @@ -1026,8 +1026,8 @@ typedef struct { */ typedef struct { uint64_t socket_power; //!< Units in uW {@host}, Host only - uint32_t current_socket_power; //!< Units in W {@linux_bm}, Linux only - uint32_t average_socket_power; //!< Units in W {@linux_bm}, Linux only + uint32_t current_socket_power; //!< Units in W {@linux_bm}, Linux only, Mi 300+ Series cards + uint32_t average_socket_power; //!< Units in W {@linux_bm}, Linux only, Navi + Mi 200 and earlier Series cards uint32_t gfx_voltage; //!< GFX voltage measurement in mV {@linux_bm} or V {@host} uint32_t soc_voltage; //!< SOC voltage measurement in mV {@linux_bm} or V {@host} uint32_t mem_voltage; //!< MEM voltage measurement in mV {@linux_bm} or V {@host}