[SWDEV-463406] Update API with fields for gfx_clock_below_host_limit and low_utilization violations

Updated API with fields for gfx_clock_below_host_limit and low_utilization violations
Change-Id: I25647bae6e7b785f44dab024272767658688bcad

---------
Signed-off-by: Scaffidi, Salvatore <Salvatore.Scaffidi@amd.com>
Signed-off-by: Arif, Maisam <Maisam.Arif@amd.com>
Co-authored-by: Charis Poag <Charis.Poag@amd.com>
Этот коммит содержится в:
Scaffidi, Salvatore
2025-01-08 22:07:23 -06:00
коммит произвёл GitHub
родитель 490132748f
Коммит 3793be7735
8 изменённых файлов: 245 добавлений и 84 удалений
+6
Просмотреть файл
@@ -893,6 +893,8 @@ class TestAmdSmiPythonInterface(unittest.TestCase):
violation_status['acc_vr_thrm']))
print(" Current HBM Thrm Accumulated (Count): {}".format(
violation_status['acc_hbm_thrm']))
print(" Current GFX CLK Below Host Limit Accumulated (Count): {}".format(
violation_status['acc_gfx_clk_below_host_limit']))
print(" Prochot Thrm Violation (%): {}".format(
violation_status['per_prochot_thrm']))
@@ -904,6 +906,8 @@ class TestAmdSmiPythonInterface(unittest.TestCase):
violation_status['per_vr_thrm']))
print(" HBM Thrm Violation (%): {}".format(
violation_status['per_hbm_thrm']))
print(" GFX CLK Below Host Limit Violation (%): {}".format(
violation_status['per_gfx_clk_below_host_limit']))
print(" Prochot Thrm Violation (bool): {}".format(
violation_status['active_prochot_thrm']))
@@ -915,6 +919,8 @@ class TestAmdSmiPythonInterface(unittest.TestCase):
violation_status['active_vr_thrm']))
print(" HBM Thrm Violation (bool): {}".format(
violation_status['active_hbm_thrm']))
print(" GFX CLK Below Host Limit Violation (bool): {}".format(
violation_status['active_gfx_clk_below_host_limit']))
print()
self.tearDown()