[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>
This commit is contained in:
کامیت شده توسط
Maisam Arif
والد
81c65ed15d
کامیت
e26e26e308
@@ -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