[SWDEV-518229] Avoid N/A leaves filtering from static (#326)
The N/A leaves filering was removing clock in static.
To avoid this, removed N/A filtering from single tier.
Signed-off-by: Kanangot Balakrishnan, Bindhiya <Bindhiya.KanangotBalakrishnan@amd.com>
[ROCm/amdsmi commit: e26e26e308]
Этот коммит содержится в:
коммит произвёл
Maisam Arif
родитель
c3a39f5439
Коммит
7201649fbf
@@ -272,9 +272,9 @@ class AMDSMILogger():
|
||||
}
|
||||
if non_na:
|
||||
valid_clock_data[clock_key] = non_na
|
||||
elif clock_data != "N/A": # Handle single-tier clock_data
|
||||
else: # Handle single-tier clock_data
|
||||
valid_clock_data[clock_key] = clock_data
|
||||
elif value != "N/A": # Handle non-dictionary clock data
|
||||
else: # Handle non-dictionary clock data
|
||||
valid_clock_data = value
|
||||
tabbed_dictionary[key] = valid_clock_data
|
||||
|
||||
|
||||
Ссылка в новой задаче
Block a user